diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-05-09 18:03:43 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-05-09 18:08:38 +0200 |
commit | 8ecd0b5bc8b230dd9d213fb252178d1344744511 (patch) | |
tree | ca46489d1f7301321ab2fc021080867103a0d444 /test | |
parent | 2dcf3067ec90f7605f669727787a3167c6856544 (diff) | |
download | podman-8ecd0b5bc8b230dd9d213fb252178d1344744511.tar.gz podman-8ecd0b5bc8b230dd9d213fb252178d1344744511.tar.bz2 podman-8ecd0b5bc8b230dd9d213fb252178d1344744511.zip |
fix broken CI test
Commit b58e7e7f11 was not fully rebased before merging and is now
breaking CI because commit 69c479b16e19 made the underlying error
visible. Using journald inside the container tests is not supported.
Fixes #14162
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/play_kube_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/e2e/play_kube_test.go b/test/e2e/play_kube_test.go index 1b223637e..fb01dc1e9 100644 --- a/test/e2e/play_kube_test.go +++ b/test/e2e/play_kube_test.go @@ -3538,6 +3538,7 @@ ENV OPENJ9_JAVA_OPTIONS=%q }) It("podman play kube --log-opt = tag test", func() { + SkipIfContainerized("journald does not work inside the container") pod := getPod() err := generateKubeYaml("pod", pod, kubeYaml) Expect(err).To(BeNil()) |