aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-03-31 10:25:44 -0400
committerJason R. Coombs <jaraco@jaraco.com>2016-03-31 10:25:44 -0400
commit04d10ff025e1cbef7ec93a2008c930e856045c8a (patch)
tree67327643514eee52422a77e27177325705485451 /pkg_resources/tests
parente7a27ca0a3ba06f69836872342089e7333f24a3a (diff)
downloadexternal_python_setuptools-04d10ff025e1cbef7ec93a2008c930e856045c8a.tar.gz
external_python_setuptools-04d10ff025e1cbef7ec93a2008c930e856045c8a.tar.bz2
external_python_setuptools-04d10ff025e1cbef7ec93a2008c930e856045c8a.zip
Bypass environment marker evaluation in requirements resolution. Ref #523.
Diffstat (limited to 'pkg_resources/tests')
-rw-r--r--pkg_resources/tests/test_resources.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg_resources/tests/test_resources.py b/pkg_resources/tests/test_resources.py
index 3a8c8e54..791d8ee3 100644
--- a/pkg_resources/tests/test_resources.py
+++ b/pkg_resources/tests/test_resources.py
@@ -182,6 +182,7 @@ class TestDistro:
msg = 'Foo 0.9 is installed but Foo==1.2 is required'
assert vc.value.report() == msg
+ @pytest.mark.xfail(reason="Functionality disabled; see #523")
def test_environment_markers(self):
"""
Environment markers are evaluated at resolution time.