diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-13 21:17:10 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-13 21:17:10 -0500 |
commit | 3e05a9630ff0e0596a539d4b6d24f97d3fb987f8 (patch) | |
tree | 4a96610ae35190c88915c3ad6b9cd2516d441a22 | |
parent | 3943cf41ef2477fa85189e4bf8341fb618cac7c8 (diff) | |
download | external_python_setuptools-3e05a9630ff0e0596a539d4b6d24f97d3fb987f8.tar.gz external_python_setuptools-3e05a9630ff0e0596a539d4b6d24f97d3fb987f8.tar.bz2 external_python_setuptools-3e05a9630ff0e0596a539d4b6d24f97d3fb987f8.zip |
Skip again on appveyor
-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 5199129e..451df3c4 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -51,6 +51,8 @@ class TestNamespaces: env = dict(PYTHONPATH=python_path) subprocess.check_call(try_import, env=env) + @pytest.mark.skipif(bool(os.environ.get("APPVEYOR")), + reason="https://github.com/pypa/setuptools/issues/851") def test_pkg_resources_import(self, tmpdir): """ Ensure that a namespace package doesn't break on import |