diff options
author | Ed Santiago <santiago@redhat.com> | 2022-03-08 11:23:27 -0700 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-03-30 13:53:15 -0400 |
commit | 37a9746332c88474965d0f1f3fb15ce1d56d06bb (patch) | |
tree | 747933ba3abbec04a40712c037a93a45ce6d006f | |
parent | e308213a2310c0447c4adbdc635bc75f6b5404db (diff) | |
download | podman-37a9746332c88474965d0f1f3fb15ce1d56d06bb.tar.gz podman-37a9746332c88474965d0f1f3fb15ce1d56d06bb.tar.bz2 podman-37a9746332c88474965d0f1f3fb15ce1d56d06bb.zip |
Skip flaky pprof tests
pprof tests are way too flaky, and are causing problems for
community contributors who don't have privs to press Re-run.
There has been no activity or interest in fixing the bug,
and it's not something I can fix. So, just disable the test.
Signed-off-by: Ed Santiago <santiago@redhat.com>
-rw-r--r-- | test/e2e/system_service_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/e2e/system_service_test.go b/test/e2e/system_service_test.go index dcf5e03b2..2bc7756d6 100644 --- a/test/e2e/system_service_test.go +++ b/test/e2e/system_service_test.go @@ -58,6 +58,7 @@ var _ = Describe("podman system service", func() { const magicComment = "pprof service listening on" It("are available", func() { + Skip("FIXME: Test is too flaky (#12624)") SkipIfRemote("service subcommand not supported remotely") address := url.URL{ @@ -97,6 +98,7 @@ var _ = Describe("podman system service", func() { }) It("are not available", func() { + Skip("FIXME: Test is too flaky (#12624)") SkipIfRemote("service subcommand not supported remotely") address := url.URL{ |