Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/scripts/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pulp_scheme: "https"
image:
name: "pulp"
tag: "ci_build"
ci_base: "ghcr.io/pulp/pulp-ci-centos9:latest"
ci_base: "ghcr.io/pulp/pulp-ci-centos10:latest"
source: "${COMPONENT_SOURCE}"
ci_requirements: $(test -f ci_requirements.txt && echo -n true || echo -n false)
upperbounds: $(test "${TEST}" = "pulp" && echo -n true || echo -n false)
Expand Down
2 changes: 1 addition & 1 deletion pulp_python/tests/functional/api/test_full_mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_pull_through_install(
# Perform pull-through install
host = urlsplit(distro.base_url).hostname
url = f"{distro.base_url}simple/"
cmd = ("pip", "install", "--trusted-host", host, "-i", url, PACKAGE)
cmd = ("pip", "install", "--no-deps", "--trusted-host", host, "-i", url, PACKAGE)
subprocess.run(cmd, check=True)

stdout = subprocess.run(("pip", "list"), capture_output=True).stdout.decode("utf-8")
Expand Down
2 changes: 1 addition & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
check_commit_message: true
check_manifest: true
check_stray_pulpcore_imports: true
ci_base_image: "ghcr.io/pulp/pulp-ci-centos9"
ci_base_image: "ghcr.io/pulp/pulp-ci-centos10"
ci_env: {}
ci_trigger: "{pull_request: {branches: ['*']}}"
cli_package: "pulp-cli"
Expand Down
Loading