diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-11 20:48:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-11 20:48:07 -0500 |
commit | 8c055ff64792c23e80f85f4c127d003fd2ae4b7d (patch) | |
tree | 4d03b02fcb37d31c46d88f290bb46e60591f4131 | |
parent | a5b81d8ea0b6aeba1a59e77d4d3783db4b9e23c6 (diff) | |
download | external_python_setuptools-8c055ff64792c23e80f85f4c127d003fd2ae4b7d.tar.gz external_python_setuptools-8c055ff64792c23e80f85f4c127d003fd2ae4b7d.tar.bz2 external_python_setuptools-8c055ff64792c23e80f85f4c127d003fd2ae4b7d.zip |
Mark another test to fail. Ref #851
-rw-r--r-- | setuptools/tests/test_develop.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index e0227453..d1e40929 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -136,6 +136,8 @@ class TestNamespaces: with src_dir.as_cwd(): subprocess.check_call(develop_cmd, env=env) + @pytest.mark.skipif(bool(os.environ.get("APPVEYOR")), + reason="https://github.com/pypa/setuptools/issues/851") def test_namespace_package_importable(self, tmpdir): """ Installing two packages sharing the same namespace, one installed |