Skip to content

Commit a0c84b8

Browse files
committed
Fix distutils error in CI pull-through test
1 parent 556c056 commit a0c84b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pulp_python/tests/functional/api/test_full_mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_pull_through_install(
3232
# Perform pull-through install
3333
host = urlsplit(distro.base_url).hostname
3434
url = f"{distro.base_url}simple/"
35-
cmd = ("pip", "install", "--trusted-host", host, "-i", url, PACKAGE)
35+
cmd = ("pip", "install", "--no-deps", "--trusted-host", host, "-i", url, PACKAGE)
3636
subprocess.run(cmd, check=True)
3737

3838
stdout = subprocess.run(("pip", "list"), capture_output=True).stdout.decode("utf-8")

0 commit comments

Comments
 (0)