mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Add a test for issue #1934
This commit is contained in:
parent
6dc7f5ac35
commit
af819b3758
1 changed files with 9 additions and 0 deletions
|
@ -145,6 +145,15 @@ def test_install_local_editable_with_extras(script, data):
|
|||
assert script.site_packages / 'simple' in res.files_created, str(res)
|
||||
|
||||
|
||||
def test_install_collected_dependancies_first(script):
|
||||
result = script.pip(
|
||||
'install', 'paramiko',
|
||||
)
|
||||
text = [line for line in result.stdout.split('\n')
|
||||
if 'Installing' in line][0]
|
||||
assert text.endswith('paramiko')
|
||||
|
||||
|
||||
def test_install_local_editable_with_subdirectory(script):
|
||||
version_pkg_path = _create_test_package_with_subdirectory(script,
|
||||
'version_subdir')
|
||||
|
|
Loading…
Reference in a new issue