diff options
author | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-21 14:01:26 +0300 |
---|---|---|
committer | Alexander Duryagin <aduryagin@gmail.com> | 2018-08-21 14:01:26 +0300 |
commit | 0553c91f1c08d0426574bc996e377706a6df3e1a (patch) | |
tree | 0e627245dc956e4048d2073ce31afe75f1953b45 /setuptools/tests | |
parent | 1fc75056079f49d980dd664222bae47a713906ca (diff) | |
download | external_python_setuptools-0553c91f1c08d0426574bc996e377706a6df3e1a.tar.gz external_python_setuptools-0553c91f1c08d0426574bc996e377706a6df3e1a.tar.bz2 external_python_setuptools-0553c91f1c08d0426574bc996e377706a6df3e1a.zip |
remove xfail for namespace tests that actually pass in AppVeyor
Diffstat (limited to 'setuptools/tests')
-rw-r--r-- | setuptools/tests/test_namespaces.py | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 839f5651..f2acff84 100644 --- a/setuptools/tests/test_namespaces.py +++ b/setuptools/tests/test_namespaces.py @@ -59,10 +59,6 @@ class TestNamespaces: with test.test.paths_on_pythonpath(map(str, targets)): subprocess.check_call(try_import) - @pytest.mark.xfail( - 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 @@ -87,10 +83,6 @@ class TestNamespaces: with test.test.paths_on_pythonpath([str(target)]): subprocess.check_call(try_import) - @pytest.mark.xfail( - os.environ.get("APPVEYOR"), - reason="https://github.com/pypa/setuptools/issues/851", - ) def test_namespace_package_installed_and_cwd(self, tmpdir): """ Installing a namespace packages but also having it in the current @@ -118,11 +110,7 @@ class TestNamespaces: with test.test.paths_on_pythonpath([str(target)]): subprocess.check_call(pkg_resources_imp, cwd=str(pkg_A)) - @pytest.mark.xfail( - os.environ.get("APPVEYOR"), - reason="https://github.com/pypa/setuptools/issues/851", - ) - def test_packages_in_the_sampe_namespace_installed_and_cwd(self, tmpdir): + def test_packages_in_the_same_namespace_installed_and_cwd(self, tmpdir): """ Installing one namespace package and also have another in the same namespace in the current working directory, both of them must be |