From 1b42af5004245787114b4d1b2819ae93b083d180 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 18 Jun 2024 22:46:52 +0200 Subject: [PATCH] ansible-test: update http-test-container to 3.2.0 (#83469) --- changelogs/fragments/83469-http-test-container.yml | 2 ++ .../_internal/commands/integration/cloud/httptester.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/83469-http-test-container.yml diff --git a/changelogs/fragments/83469-http-test-container.yml b/changelogs/fragments/83469-http-test-container.yml new file mode 100644 index 00000000000..d39bb4c4e3e --- /dev/null +++ b/changelogs/fragments/83469-http-test-container.yml @@ -0,0 +1,2 @@ +minor_changes: + - "ansible-test - update HTTP test container to 3.2.0 (https://github.com/ansible/ansible/pull/83469)." diff --git a/test/lib/ansible_test/_internal/commands/integration/cloud/httptester.py b/test/lib/ansible_test/_internal/commands/integration/cloud/httptester.py index 1bd63376101..886972eb083 100644 --- a/test/lib/ansible_test/_internal/commands/integration/cloud/httptester.py +++ b/test/lib/ansible_test/_internal/commands/integration/cloud/httptester.py @@ -31,7 +31,7 @@ class HttptesterProvider(CloudProvider): def __init__(self, args: IntegrationConfig) -> None: super().__init__(args) - self.image = os.environ.get('ANSIBLE_HTTP_TEST_CONTAINER', 'quay.io/ansible/http-test-container:3.0.0') + self.image = os.environ.get('ANSIBLE_HTTP_TEST_CONTAINER', 'quay.io/ansible/http-test-container:3.2.0') self.uses_docker = True