Skip to content

Commit

Permalink
Skip failing test on appveyor until the cause can be uncovered. Ref #851
Browse files Browse the repository at this point in the history
.
  • Loading branch information
jaraco committed Nov 18, 2016
1 parent b4d7715 commit e8d53c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions setuptools/tests/test_namespaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ class TestNamespaces:

@pytest.mark.xfail(sys.version_info < (3, 3),
reason="Requires PEP 420")
@pytest.mark.skipif('os.environ.get("APPVEYOR")',
reason="https://github.com/pypa/setuptools/issues/851")
def test_mixed_site_and_non_site(self, tmpdir):
"""
Installing two packages sharing the same namespace, one installed
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[testenv]
deps=-rtests/requirements.txt
passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir
passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir APPVEYOR
commands=python -m pytest {posargs:-rsx}

0 comments on commit e8d53c0

Please sign in to comment.