aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-12-01 11:30:26 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-12-01 11:30:26 -0500
commitd42c2ace9c89dccf0076c17d33f7202e05f97bc0 (patch)
treef0b64eeeecad0781ae034acbb41ed0183e1e94e2
parent5cfce47ddb304fc95660c1086f3230fc8fdead61 (diff)
downloadexternal_python_setuptools-d42c2ace9c89dccf0076c17d33f7202e05f97bc0.tar.gz
external_python_setuptools-d42c2ace9c89dccf0076c17d33f7202e05f97bc0.tar.bz2
external_python_setuptools-d42c2ace9c89dccf0076c17d33f7202e05f97bc0.zip
cast the value to a bool so pytest doesn't try to eval it
-rw-r--r--setuptools/tests/test_namespaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py
index 2d44ad86..28c5e9de 100644
--- a/setuptools/tests/test_namespaces.py
+++ b/setuptools/tests/test_namespaces.py
@@ -13,7 +13,7 @@ class TestNamespaces:
@pytest.mark.xfail(sys.version_info < (3, 3),
reason="Requires PEP 420")
- @pytest.mark.skipif(os.environ.get("APPVEYOR"),
+ @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):
"""