diff options
author | Matt Clay <matt@mystile.com> | 2024-06-19 03:31:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 03:31:33 +0200 |
commit | 96c04e9d1dd6d43746c31ad9d8bc61057857bff7 (patch) | |
tree | 5192ff4f9029d9c07932464d61c6b8432c1fc45e /test | |
parent | ansible-test: update http-test-container to 3.2.0 (#83469) (diff) | |
download | ansible-96c04e9d1dd6d43746c31ad9d8bc61057857bff7.tar.xz ansible-96c04e9d1dd6d43746c31ad9d8bc61057857bff7.zip |
ansible-test - Update PyPI and utility container (#83475)
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/ansible_test/_internal/docker_util.py | 2 | ||||
-rw-r--r-- | test/lib/ansible_test/_internal/pypi_proxy.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/ansible_test/_internal/docker_util.py b/test/lib/ansible_test/_internal/docker_util.py index e4f08d46e1..6bdcf927b7 100644 --- a/test/lib/ansible_test/_internal/docker_util.py +++ b/test/lib/ansible_test/_internal/docker_util.py @@ -47,7 +47,7 @@ DOCKER_COMMANDS = [ 'podman', ] -UTILITY_IMAGE = 'quay.io/ansible/ansible-test-utility-container:3.0.0' +UTILITY_IMAGE = 'quay.io/ansible/ansible-test-utility-container:3.1.0' # Max number of open files in a docker container. # Passed with --ulimit option to the docker run command. diff --git a/test/lib/ansible_test/_internal/pypi_proxy.py b/test/lib/ansible_test/_internal/pypi_proxy.py index 1c9a9aa70b..ad7413fbdb 100644 --- a/test/lib/ansible_test/_internal/pypi_proxy.py +++ b/test/lib/ansible_test/_internal/pypi_proxy.py @@ -69,7 +69,7 @@ def run_pypi_proxy(args: EnvironmentConfig, targets_use_pypi: bool) -> None: display.warning('Unable to use the PyPI proxy because Docker is not available. Installation of packages using `pip` may fail.') return - image = 'quay.io/ansible/pypi-test-container:3.1.0' + image = 'quay.io/ansible/pypi-test-container:3.2.0' port = 3141 run_support_container( |