From e3af5a38d3416b1df1f996bcc3163bf796aeb79e Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 18 Sep 2024 10:26:45 -0600 Subject: [PATCH] CI: rm system test: bump grace period The "rm on stopping containers" test is flaking under high load, probably because I bumped up two timeouts in the healthcheck container that it relies on. Bump up this test's timeout as well. Signed-off-by: Ed Santiago --- test/system/055-rm.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/055-rm.bats b/test/system/055-rm.bats index 3673b7dc25..c7ca0707d7 100644 --- a/test/system/055-rm.bats +++ b/test/system/055-rm.bats @@ -150,7 +150,7 @@ function __run_healthcheck_container() { # We have no way to guarantee that we see 'stopping', but at a very # minimum we need to check at least one rm failure local rm_failures=0 - for i in {1..10}; do + for i in {1..20}; do run_podman '?' rm $cname if [[ $status -eq 0 ]]; then break