diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:12:31 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-30 11:12:31 -0400 |
commit | d38321d4bbb2f04de89706cd7274397cbfc879fb (patch) | |
tree | 7e46541ccef5af826dc5618c4c45b28b7d3a8a33 /setuptools | |
parent | 82d6b404903bebabb8ae3df2453001d0fb086e6b (diff) | |
download | external_python_setuptools-d38321d4bbb2f04de89706cd7274397cbfc879fb.tar.gz external_python_setuptools-d38321d4bbb2f04de89706cd7274397cbfc879fb.tar.bz2 external_python_setuptools-d38321d4bbb2f04de89706cd7274397cbfc879fb.zip |
For now mark test as xfail until the issue can be diagnosed and resolved. Ref #707.
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/tests/test_msvc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/tests/test_msvc.py b/setuptools/tests/test_msvc.py index a0c76ea0..0d0a90f5 100644 --- a/setuptools/tests/test_msvc.py +++ b/setuptools/tests/test_msvc.py @@ -6,6 +6,8 @@ import os import contextlib import distutils.errors +import six + import pytest try: from unittest import mock @@ -71,6 +73,8 @@ class TestModulePatch: mod_name = distutils.msvc9compiler.find_vcvarsall.__module__ assert mod_name == "setuptools.msvc", "find_vcvarsall unpatched" + @pytest.mark.xfail(six.PY2, + reason="https://github.com/pypa/setuptools/issues/707") def test_no_registry_entries_means_nothing_found(self): """ No registry entries or environment variable should lead to an error |