From 7f3bb2d2389e77dd4ee6a0aaea31c0e491fc1ed1 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Mon, 3 Jun 2024 15:30:06 +0200 Subject: [PATCH] test/system: speed up podman parallel build should not race It is not clear at all why the count of 30 was choosen, this seems a lot and of course takes quite a while. The test takes over 16s in CI. To speed it up reduce the count to 10. I think this should still be good enough to ensure there are no races IMO. Signed-off-by: Paul Holzinger --- test/system/070-build.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/070-build.bats b/test/system/070-build.bats index 73fc8f4ceb..8926ac0fdd 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -246,7 +246,7 @@ FROM $IMAGE RUN echo hi EOF - local count=30 + local count=10 for i in $(seq --format '%02g' 1 $count); do timeout --foreground -v --kill=10 60 \ $PODMAN build -t i$i $PODMAN_TMPDIR &> $PODMAN_TMPDIR/log.$i &