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 556c056 commit a0c84b8Copy full SHA for a0c84b8
1 file changed
pulp_python/tests/functional/api/test_full_mirror.py
@@ -32,7 +32,7 @@ def test_pull_through_install(
32
# Perform pull-through install
33
host = urlsplit(distro.base_url).hostname
34
url = f"{distro.base_url}simple/"
35
- cmd = ("pip", "install", "--trusted-host", host, "-i", url, PACKAGE)
+ cmd = ("pip", "install", "--no-deps", "--trusted-host", host, "-i", url, PACKAGE)
36
subprocess.run(cmd, check=True)
37
38
stdout = subprocess.run(("pip", "list"), capture_output=True).stdout.decode("utf-8")
0 commit comments