diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-02 12:47:41 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-02 12:47:41 -0400 |
commit | 8d1349a2291054d1048c0f1a7180a96817c5f427 (patch) | |
tree | ce980a04699096c42b85f6fe0b2f3f1c6a4bad61 | |
parent | b0d667dbaedf16e77da46f420827d7493ed66d10 (diff) | |
download | external_python_setuptools-8d1349a2291054d1048c0f1a7180a96817c5f427.tar.gz external_python_setuptools-8d1349a2291054d1048c0f1a7180a96817c5f427.tar.bz2 external_python_setuptools-8d1349a2291054d1048c0f1a7180a96817c5f427.zip |
Change order of xfail, giving the unfiltered one precedence.
-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 9b10c428..27d703f5 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -170,9 +170,9 @@ class TestEasyInstallTest: sdist_zip.close() return str(sdist) + @pytest.mark.xfail(reason="#709 and #710") @pytest.mark.xfail(setuptools.tests.is_ascii, reason="https://github.com/pypa/setuptools/issues/706") - @pytest.mark.xfail(reason="#709 and #710") def test_unicode_filename_in_sdist(self, sdist_unicode, tmpdir, monkeypatch): """ The install command should execute correctly even if |