diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-29 18:20:05 -0600 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-11-29 18:20:05 -0600 |
commit | a83ae992278916ade263379f2d7adc56a4539ff4 (patch) | |
tree | c931ae8049664ea445ae96d9b96b0311f31ee15e | |
parent | 0be2dfcfd85044932127ee47ad5d16e5069d3b3a (diff) | |
download | external_python_setuptools-a83ae992278916ade263379f2d7adc56a4539ff4.tar.gz external_python_setuptools-a83ae992278916ade263379f2d7adc56a4539ff4.tar.bz2 external_python_setuptools-a83ae992278916ade263379f2d7adc56a4539ff4.zip |
Evaluate the expression directly. Workaround for #860.
-rw-r--r-- | setuptools/tests/test_namespaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_namespaces.py b/setuptools/tests/test_namespaces.py index 21fd69e7..2d44ad86 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(os.environ.get("APPVEYOR"), reason="https://github.com/pypa/setuptools/issues/851") def test_mixed_site_and_non_site(self, tmpdir): """ |