Commit bc65372f authored by Jason R. Coombs's avatar Jason R. Coombs

Disable index URL in pip-based fetch_build_eggs to avoid hitting PyPI.

parent 0f699dcd
......@@ -181,6 +181,8 @@ def test_test_command_install_requirements(virtualenv, tmpdir):
"python -c \"__import__('pkg_resources').require(['pip', 'wheel'])\"")
# uninstall setuptools so that 'setup.py develop' works
virtualenv.run("python -m pip uninstall -y setuptools")
# disable index URL so bits and bobs aren't requested from PyPI
virtualenv.env['PIP_NO_INDEX'] = '1'
_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