diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-18 16:07:10 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-18 16:07:10 -0500 |
commit | e8d53c0b830744a3cec9c0080293c39dfbf5ac72 (patch) | |
tree | 47cf35d1d8d6244ec7988ca2bc4bbbe88ab10b2e /setuptools/tests/test_namespaces.py | |
parent | b4d77154138d7fb7042153491e9b5c1af534eb4d (diff) | |
download | external_python_setuptools-e8d53c0b830744a3cec9c0080293c39dfbf5ac72.tar.gz external_python_setuptools-e8d53c0b830744a3cec9c0080293c39dfbf5ac72.tar.bz2 external_python_setuptools-e8d53c0b830744a3cec9c0080293c39dfbf5ac72.zip |
Skip failing test on appveyor until the cause can be uncovered. Ref #851.
Diffstat (limited to 'setuptools/tests/test_namespaces.py')
-rw-r--r-- | setuptools/tests/test_namespaces.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index c148577d..21fd69e7 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -13,6 +13,8 @@ class TestNamespaces: @pytest.mark.xfail(sys.version_info < (3, 3), reason="Requires PEP 420") + @pytest.mark.skipif('os.environ.get("APPVEYOR")', + reason="https://github.com/pypa/setuptools/issues/851") def test_mixed_site_and_non_site(self, tmpdir): """ Installing two packages sharing the same namespace, one installed |