diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:07:48 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:07:48 -0400 |
commit | 82d6b404903bebabb8ae3df2453001d0fb086e6b (patch) | |
tree | 311b1ee47bbb04be8c5b45a6c97d74898217e7e6 | |
parent | 857949575022946cc60c7cd1d0d088246d3f7540 (diff) | |
download | python-setuptools-git-82d6b404903bebabb8ae3df2453001d0fb086e6b.tar.gz |
Use the logic already vetted for determining ascii context.
-rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 0f1ab253..b2094901 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -170,7 +170,7 @@ class TestEasyInstallTest: sdist_zip.close() return str(sdist) - @pytest.mark.xfail(os.environ.get('LANG') == 'C', + @pytest.mark.xfail(setuptools.tests.is_ascii, reason="https://github.com/pypa/setuptools/issues/706") def test_unicode_filename_in_sdist(self, sdist_unicode, tmpdir, monkeypatch): """ |