diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-02 09:25:55 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-02 09:25:55 -0400 |
commit | 0d0bc3003b3613318a382ff14917060cda43c9f0 (patch) | |
tree | 94eeee5d5b5a4028eeba1a76ad156a3a40279fc0 | |
parent | 7ba9874f0d7083b42da9b1f3d8a5c8ef059d90be (diff) | |
download | python-setuptools-git-0d0bc3003b3613318a382ff14917060cda43c9f0.tar.gz |
Mark tests as xfail. Ref #704 Ref #709 Ref #710.
-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 |