diff options
author | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-21 19:48:22 +0300 |
---|---|---|
committer | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-21 19:48:22 +0300 |
commit | ec1a8f60134fb409c9b747cb15e0b5efbd519874 (patch) | |
tree | 7f5c11009b876502ce22f2d1cf25c90e9996e75b | |
parent | 0553c91f1c08d0426574bc996e377706a6df3e1a (diff) | |
download | external_python_setuptools-ec1a8f60134fb409c9b747cb15e0b5efbd519874.tar.gz external_python_setuptools-ec1a8f60134fb409c9b747cb15e0b5efbd519874.tar.bz2 external_python_setuptools-ec1a8f60134fb409c9b747cb15e0b5efbd519874.zip |
remove xfail for AppVeyor from namespace tests entirely
-rw-r--r-- | setuptools/tests/test_namespaces.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index f2acff84..da19bd79 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -16,10 +16,6 @@ class TestNamespaces: sys.version_info < (3, 5), reason="Requires importlib.util.module_from_spec", ) - @pytest.mark.xfail( - 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 |