Commit 0f699dcd authored by Jason R. Coombs's avatar Jason R. Coombs

In test_test_command_install_requirements, uninstall setuptools to avoid...

In test_test_command_install_requirements, uninstall setuptools to avoid getting some other version in the environment.
parent 36233fe3
......@@ -179,6 +179,8 @@ def test_test_command_install_requirements(virtualenv, tmpdir):
# Ensure pip/wheel packages are installed.
virtualenv.run(
"python -c \"__import__('pkg_resources').require(['pip', 'wheel'])\"")
# uninstall setuptools so that 'setup.py develop' works
virtualenv.run("python -m pip uninstall -y setuptools")
_check_test_command_install_requirements(virtualenv, tmpdir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment