From 7d7c656f5c6ca17f20217a4fbde3cc198d26e3d0 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Tue, 27 Feb 2024 11:42:49 -0600 Subject: [PATCH] [stable-2.12] Disable ansible-test podman container tests on Ubuntu 22.04 (#82748) (#82755) (cherry picked from commit 9a8be1e) --- test/integration/targets/ansible-test-container/runme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/targets/ansible-test-container/runme.py b/test/integration/targets/ansible-test-container/runme.py index 6ca068d0e30..f1bf306a629 100755 --- a/test/integration/targets/ansible-test-container/runme.py +++ b/test/integration/targets/ansible-test-container/runme.py @@ -1008,7 +1008,7 @@ class AptBootstrapper(Bootstrapper): @classmethod def install_podman(cls) -> bool: """Return True if podman will be installed.""" - return not (os_release.id == 'ubuntu' and os_release.version_id == '20.04') + return not (os_release.id == 'ubuntu' and os_release.version_id in {'20.04', '22.04'}) @classmethod def install_docker(cls) -> bool: