-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: add test for building with unicode filenames #355
base: main
Are you sure you want to change the base?
Conversation
tests/test_build.py
Outdated
files = [ | ||
'pyproject.toml', | ||
'packageunicode/__init__.py', | ||
u'packageunicode/No\\u00ebl.jpg', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
u'packageunicode/No\\u00ebl.jpg', | |
'packageunicode/No\\u00ebl.jpg', |
We don't need to worry about Python 2 here. :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m trying to figure out why the appveyor ci is failing. The tests all run successfully locally with tox.
5cf1d2d
to
411e6c5
Compare
411e6c5
to
9185838
Compare
This comment was marked as spam.
This comment was marked as spam.
Let's see how this goes with the current test pipeline. |
Still no dice:
|
Added an explicit test for building against unicode filenames that I neglected to add with the last PR.