diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 10:30:42 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-12-30 10:30:42 -0500 |
commit | c2948e8c76a2778371b779d56682ec61d48dfbc3 (patch) | |
tree | 6afade30e4880f8f753692fe9bba18c6a1c06ea4 /setuptools/tests | |
parent | e3a4428d6a4e3889992ebb1765f27d9b9807325b (diff) | |
download | external_python_setuptools-c2948e8c76a2778371b779d56682ec61d48dfbc3.tar.gz external_python_setuptools-c2948e8c76a2778371b779d56682ec61d48dfbc3.tar.bz2 external_python_setuptools-c2948e8c76a2778371b779d56682ec61d48dfbc3.zip |
Reindent for clarity
Diffstat (limited to 'setuptools/tests')
-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. |