diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-21 14:15:37 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-21 14:39:59 -0500 |
| commit | 5ad13718686bee04a93b4e86929c1bb170f14a52 (patch) | |
| tree | 06dbea4dd959755a65ba2c9941d5942b98c3b91a /setuptools/tests | |
| parent | a17fa50d2675d89077be09d668a073c751b76e0c (diff) | |
| download | external_python_setuptools-5ad13718686bee04a93b4e86929c1bb170f14a52.tar.gz external_python_setuptools-5ad13718686bee04a93b4e86929c1bb170f14a52.tar.bz2 external_python_setuptools-5ad13718686bee04a93b4e86929c1bb170f14a52.zip | |
Cast the value to rmtree to bytes on Linux and Python 2 when the filesystemencoding is ascii, and let posixpath work its voodoo. Fixes #706.
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 08138efc..1ea33b08 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -169,8 +169,6 @@ class TestEasyInstallTest: sdist_zip.close() return str(sdist) - @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): """ The install command should execute correctly even if |
