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 23, 2020
1 parent 37b5f2a commit d429b39
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/functional/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,18 +759,18 @@ def test_install_using_install_option_and_editable(script, tmpdir):


@pytest.mark.network
@need_mercurial
@windows_workaround_7667
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 d429b39

Please sign in to comment.