diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-08-08 19:50:24 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-08-08 19:50:24 -0400 |
commit | 521987da809e63ee51a63aa45dbe372d40deb8f7 (patch) | |
tree | 706ed8f9ba5275ecb5b242016e1f06bf59564286 /setuptools | |
parent | 148cace6a965fb8f6d9839663c025ceb321ca532 (diff) | |
download | external_python_setuptools-521987da809e63ee51a63aa45dbe372d40deb8f7.tar.gz external_python_setuptools-521987da809e63ee51a63aa45dbe372d40deb8f7.tar.bz2 external_python_setuptools-521987da809e63ee51a63aa45dbe372d40deb8f7.zip |
Remove expected fail.
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/tests/test_distutils_adoption.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/setuptools/tests/test_distutils_adoption.py b/setuptools/tests/test_distutils_adoption.py index 7f28a217..bb8e34d5 100644 --- a/setuptools/tests/test_distutils_adoption.py +++ b/setuptools/tests/test_distutils_adoption.py @@ -57,7 +57,10 @@ def test_distutils_local_with_setuptools(venv): assert venv.name in loc.split(os.sep) -@pytest.mark.xfail(reason="#2259") def test_distutils_local(venv): + """ + Even without importing, the setuptools-local copy of distutils is + preferred. + """ env = dict(SETUPTOOLS_USE_DISTUTILS='local') assert venv.name in find_distutils(venv, env=env).split(os.sep) |