diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0846b9e9..f77c6db5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,8 @@ jobs: - python: "3.11" ansible: "stable-2.17" - python: "3.12" + ansible: "stable-2.18" + - python: "3.13" ansible: "devel" image_tag: "nightly" lower_bounds: true diff --git a/meta/runtime.yml b/meta/runtime.yml index c9c4d039..ba8bcf83 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -47,5 +47,5 @@ plugin_routing: deprecation: removal_version: "0.1.0" warning_text: "Use pulp.squeezer.file_content instead." -requires_ansible: ">=2.15.0,<2.18" +requires_ansible: ">=2.15.0,<2.19" ... diff --git a/tests/run_container.sh b/tests/run_container.sh index 214ab923..c9bdc3a7 100755 --- a/tests/run_container.sh +++ b/tests/run_container.sh @@ -45,7 +45,16 @@ else SELINUX="" fi; -"${CONTAINER_RUNTIME}" run ${RM:+--rm} --env S6_KEEP_ENV=1 ${PULP_API_ROOT:+--env PULP_API_ROOT} --detach --name "pulp-ephemeral" --volume "${BASEPATH}/settings:/etc/pulp${SELINUX:+:Z}" --publish "8080:80" "ghcr.io/pulp/pulp:${IMAGE_TAG}" +"${CONTAINER_RUNTIME}" \ + run ${RM:+--rm} \ + --env S6_KEEP_ENV=1 \ + ${PULP_API_ROOT:+--env PULP_API_ROOT} \ + --detach \ + --name "pulp-ephemeral" \ + --volume "${BASEPATH}/settings:/etc/pulp${SELINUX:+:Z}" \ + --publish "8080:80" \ + --network "bridge" \ + "ghcr.io/pulp/pulp:${IMAGE_TAG}" # shellcheck disable=SC2064 trap "${CONTAINER_RUNTIME} stop pulp-ephemeral" EXIT