From a706fe52495a9e23dbd76c7ff3e9f2035f6f98b9 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 24 Nov 2020 16:08:17 -0800 Subject: [PATCH] podman: give image build a bit longer to run Seems it's timing out in current Rawhide, but actually working. Signed-off-by: Adam Williamson --- tests/podman.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/podman.pm b/tests/podman.pm index e3557e34..46b84fc1 100644 --- a/tests/podman.pm +++ b/tests/podman.pm @@ -19,7 +19,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)'; + assert_script_run 'podman build -t fedora-httpd $(pwd)', 90; # Verify the image validate_script_output "podman images", sub { m/fedora-httpd/ }; # Run the container