aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_namespaces.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-12-11 16:18:29 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-12-11 16:18:36 -0500
commit230ffaafd061b42f8674b6b6b75ed8133e8d6934 (patch)
treead31e1cf903a6c0fc26ab79c5764966157640601 /setuptools/tests/test_namespaces.py
parent8fa9a8640eb85e7250b8e3ca15124e74ce6014e7 (diff)
downloadexternal_python_setuptools-230ffaafd061b42f8674b6b6b75ed8133e8d6934.tar.gz
external_python_setuptools-230ffaafd061b42f8674b6b6b75ed8133e8d6934.tar.bz2
external_python_setuptools-230ffaafd061b42f8674b6b6b75ed8133e8d6934.zip
Expect failure on Python 3.4 and earlier as module_from_spec isn't available. Ref #250.
Diffstat (limited to 'setuptools/tests/test_namespaces.py')
-rw-r--r--setuptools/tests/test_namespaces.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py
index 28c5e9de..e7fa4ee6 100644
--- a/setuptools/tests/test_namespaces.py
+++ b/setuptools/tests/test_namespaces.py
@@ -11,8 +11,8 @@ from . import namespaces
class TestNamespaces:
- @pytest.mark.xfail(sys.version_info < (3, 3),
- reason="Requires PEP 420")
+ @pytest.mark.xfail(sys.version_info < (3, 5),
+ reason="Requires importlib.util.module_from_spec")
@pytest.mark.skipif(bool(os.environ.get("APPVEYOR")),
reason="https://github.com/pypa/setuptools/issues/851")
def test_mixed_site_and_non_site(self, tmpdir):