diff options
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index d4d29e27..ca943948 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -275,10 +275,13 @@ class TestSetupRequires(unittest.TestCase): with TestSetupRequires.create_sdist() as dist_file: with tempdir_context() as temp_install_dir: with environment_context(PYTHONPATH=temp_install_dir): - ei_params = ['--index-url', p_index.url, + ei_params = [ + '--index-url', p_index.url, '--allow-hosts', p_index_loc, - '--exclude-scripts', '--install-dir', temp_install_dir, - dist_file] + '--exclude-scripts', + '--install-dir', temp_install_dir, + dist_file, + ] with argv_context(['easy_install']): # attempt to install the dist. It should fail because # it doesn't exist. |