mirror of https://github.com/containers/podman.git
disable checkpoint tests on f29
temporarily disabling checkpoint tests on f29 as they don't currently pass. Signed-off-by: baude <bbaude@redhat.com>
This commit is contained in:
parent
d3bc70d5d0
commit
dd81a8fe7d
|
@ -28,6 +28,10 @@ var _ = Describe("Podman checkpoint", func() {
|
|||
if !criu.CheckForCriu() {
|
||||
Skip("CRIU is missing or too old.")
|
||||
}
|
||||
hostInfo := podmanTest.Host
|
||||
if hostInfo.Distribution == "fedora" && hostInfo.Version == "29" {
|
||||
Skip("Checkpoint tests appear to fail on F29.")
|
||||
}
|
||||
})
|
||||
|
||||
AfterEach(func() {
|
||||
|
|
Loading…
Reference in New Issue