diff options
author | Ed Santiago <santiago@redhat.com> | 2020-07-29 11:30:09 -0600 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2020-07-29 11:30:09 -0600 |
commit | 52375c033a12fabfd594c06780822afaf12ab469 (patch) | |
tree | 6f483e351055ca7ea09c6099d482030dfee989cc /pkg/bindings/test/containers_test.go | |
parent | 7f38774ee7758e56cf31e87c81ae0bc9208d0ede (diff) | |
download | podman-52375c033a12fabfd594c06780822afaf12ab469.tar.gz podman-52375c033a12fabfd594c06780822afaf12ab469.tar.bz2 podman-52375c033a12fabfd594c06780822afaf12ab469.zip |
bindings: skip flaky pause/unpause test
The "podman wait to pause|unpause condition" test is failing
several times a day, always a flake. Issue #6518.
Disable it until the cause can be identified and fixed.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'pkg/bindings/test/containers_test.go')
-rw-r--r-- | pkg/bindings/test/containers_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/bindings/test/containers_test.go b/pkg/bindings/test/containers_test.go index c1a01c280..9a188e5da 100644 --- a/pkg/bindings/test/containers_test.go +++ b/pkg/bindings/test/containers_test.go @@ -280,6 +280,7 @@ var _ = Describe("Podman containers ", func() { }) It("podman wait to pause|unpause condition", func() { + Skip("FIXME: https://github.com/containers/podman/issues/6518") var ( name = "top" exitCode int32 = -1 |