Skip to content

Commit

Permalink
Replace a now-private BitBucket repository
Browse files Browse the repository at this point in the history
  • Loading branch information
McSinyx committed Aug 21, 2020
1 parent 6d16fa4 commit 6e679e2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/functional/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,12 +765,13 @@ def test_install_global_option_using_editable(script, tmpdir):
"""
Test using global distutils options, but in an editable installation
"""
url = 'hg+http://bitbucket.org/runeh/anyjson'
url = 'git+https://github.com/pypa/pip-test-package'
local_repo = local_checkout(url, tmpdir)
result = script.pip(
'install', '--global-option=--version', '-e',
'{url}@0.2.5#egg=anyjson'.format(url=local_checkout(url, tmpdir)),
'{}@0.1.2#egg=pip-test-package'.format(local_repo),
expect_stderr=True)
assert 'Successfully installed anyjson' in result.stdout
assert 'Successfully installed pip-test-package' in result.stdout


@pytest.mark.network
Expand Down

0 comments on commit 6e679e2

Please sign in to comment.