diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-07-22 15:29:18 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-07-22 15:29:18 +0200 |
commit | 290116bf81a0ef68d1fcfe39ea3c3aeb2b3de008 (patch) | |
tree | 0361b654fab1e499a6279978565a28c182cfc86c /test/e2e/manifest_test.go | |
parent | 99bf6f96cd93867813e72742c484ab0abf15cca4 (diff) | |
download | podman-290116bf81a0ef68d1fcfe39ea3c3aeb2b3de008.tar.gz podman-290116bf81a0ef68d1fcfe39ea3c3aeb2b3de008.tar.bz2 podman-290116bf81a0ef68d1fcfe39ea3c3aeb2b3de008.zip |
integration test: fix network backend option with remote
I honestly do not understand all this extra option parsing here but
there is really no reason to exclude the option for remote, all the
other global options are also set there.
This fixes a problem with mixed cni/netavark use because the option was
unset.
Fixes #15017
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test/e2e/manifest_test.go')
-rw-r--r-- | test/e2e/manifest_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/e2e/manifest_test.go b/test/e2e/manifest_test.go index ecddf2935..1f58419a1 100644 --- a/test/e2e/manifest_test.go +++ b/test/e2e/manifest_test.go @@ -293,9 +293,6 @@ var _ = Describe("Podman manifest", func() { }) It("authenticated push", func() { - if podmanTest.Host.Distribution == "ubuntu" && IsRemote() { - Skip("FIXME: #15017. Registry times out.") - } registryOptions := &podmanRegistry.Options{ Image: "docker-archive:" + imageTarPath(REGISTRY_IMAGE), } |