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

Reindent for clarity

parent e3a4428d
...@@ -275,10 +275,13 @@ class TestSetupRequires(unittest.TestCase): ...@@ -275,10 +275,13 @@ class TestSetupRequires(unittest.TestCase):
with TestSetupRequires.create_sdist() as dist_file: with TestSetupRequires.create_sdist() as dist_file:
with tempdir_context() as temp_install_dir: with tempdir_context() as temp_install_dir:
with environment_context(PYTHONPATH=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, '--allow-hosts', p_index_loc,
'--exclude-scripts', '--install-dir', temp_install_dir, '--exclude-scripts',
dist_file] '--install-dir', temp_install_dir,
dist_file,
]
with argv_context(['easy_install']): with argv_context(['easy_install']):
# attempt to install the dist. It should fail because # attempt to install the dist. It should fail because
# it doesn't exist. # it doesn't exist.
......
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