From 7d16e06fa196d88fbd217ffa0add76da4ff22929 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Wed, 3 Mar 2021 09:59:57 -0500 Subject: [PATCH] Cirrus: Skip frequent flake on v2.2 branch This test frequently flakes on at least one platform during daily cirrus-cron runs on the v2.2 branch. Since this is not happening on other versions, assume it's some kind of difficult-to-find/fix race condition. Skip the test on all platforms to cut down on noise. Ref: https://github.com/containers/podman/issues/7340 Signed-off-by: Chris Evich --- test/system/030-run.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/test/system/030-run.bats b/test/system/030-run.bats index bf7f67f7f1..40b7fe92f0 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -544,6 +544,7 @@ json-file | f } @test "podman run with --net=host and --port prints warning" { + skip "Frequently flakes on multiple platforms on v2.2 branch" run_podman run -d --rm -p 8080 --net=host $IMAGE ls > /dev/null is "$output" ".*Port mappings have been discarded as one of the Host, Container, Pod, and None network modes are in use" }