diff options
-rw-r--r-- | setuptools/tests/test_archive_util.py | 1 | ||||
-rw-r--r-- | setuptools/tests/test_easy_install.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/tests/test_archive_util.py b/setuptools/tests/test_archive_util.py index 3f67b2d4..3e679c11 100644 --- a/setuptools/tests/test_archive_util.py +++ b/setuptools/tests/test_archive_util.py @@ -50,6 +50,7 @@ def tarfile_with_unicode(tmpdir): return str(target) +@pytest.mark.xfail(reason="#710 and #712") def test_unicode_files(tarfile_with_unicode, tmpdir): target = tmpdir / 'out' archive_util.unpack_archive(tarfile_with_unicode, six.text_type(target)) diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index b2094901..9b10c428 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -172,6 +172,7 @@ class TestEasyInstallTest: @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 |