We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fef1ad commit b953f9aCopy full SHA for b953f9a
tests/functional/test_install_config.py
@@ -441,7 +441,9 @@ def test_prioritize_url_credentials_over_netrc(
441
url = f"https://USERNAME:PASSWORD@{server.host}:{server.port}/simple"
442
443
netrc = script.scratch_path / ".netrc"
444
- netrc.write_text(f"machine {server.host} login username password password")
+ netrc.write_text(
445
+ f"machine {server.host} login wrongusername password wrongpassword"
446
+ )
447
with server_running(server):
448
script.environ["NETRC"] = netrc
449
script.pip(
0 commit comments