Merge pull request #8299 from uranusjr/remove-test-install-include-work-dir-pkg

This commit is contained in:
Pradyun Gedam 2020-05-23 06:25:00 +05:30 committed by GitHub
commit f0e2f7f39e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 26 deletions

View File

@ -1884,29 +1884,3 @@ def test_install_skip_work_dir_pkg(script, data):
assert 'Requirement already satisfied: simple' not in result.stdout
assert 'Successfully installed simple' in result.stdout
@pytest.mark.fails_on_new_resolver
def test_install_include_work_dir_pkg(script, data):
"""
Test that install of a package in working directory
should fail on the second attempt after an install
if working directory is added in PYTHONPATH
"""
# Create a test package, install it and then uninstall it
pkg_path = create_test_package_with_setup(
script, name='simple', version='1.0')
script.pip('install', '-e', '.',
expect_stderr=True, cwd=pkg_path)
script.pip('uninstall', 'simple', '-y')
script.environ.update({'PYTHONPATH': pkg_path})
# Running the install command again from the working directory
# will be a no-op, as the package is found to be installed,
# when the package directory is in PYTHONPATH
result = script.pip('install', '--find-links',
data.find_links, 'simple',
expect_stderr=True, cwd=pkg_path)
assert 'Requirement already satisfied: simple' in result.stdout