From 49987a5e415acb88900a16ed47994a732e862921 Mon Sep 17 00:00:00 2001 From: Paul Whalen Date: Wed, 7 Jul 2021 15:34:52 -0400 Subject: [PATCH] Extend timeout for podman container test. Signed-off-by: Paul Whalen --- tests/podman.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/podman.pm b/tests/podman.pm index 1ada05f0..5cd44fae 100644 --- a/tests/podman.pm +++ b/tests/podman.pm @@ -20,7 +20,7 @@ sub run { # create a Dockerfile assert_script_run 'printf \'FROM registry.fedoraproject.org/fedora:latest\nRUN /usr/bin/dnf install -y httpd\nEXPOSE 80\nCMD ["-D", "FOREGROUND"]\nENTRYPOINT ["/usr/sbin/httpd"]\n\' > Dockerfile'; # Build an image - assert_script_run 'podman build -t fedora-httpd $(pwd)', 120; + assert_script_run 'podman build -t fedora-httpd $(pwd)', 180; # Verify the image validate_script_output "podman images", sub { m/fedora-httpd/ }; # Run the container