summaryrefslogtreecommitdiff
path: root/test/e2e/images_test.go
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2020-06-11 08:21:20 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2020-07-06 15:22:24 -0400
commita10d5b42ab781932d4738334878bafa8406e5f23 (patch)
tree730fb8de74d5e2dd7d8bc42e8b434836494d0973 /test/e2e/images_test.go
parentf4708a5c49e49694307a63ce70d0b9c5fe5c310f (diff)
downloadpodman-a10d5b42ab781932d4738334878bafa8406e5f23.tar.gz
podman-a10d5b42ab781932d4738334878bafa8406e5f23.tar.bz2
podman-a10d5b42ab781932d4738334878bafa8406e5f23.zip
Change buildtag for remoteclient to remote for testing
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r--test/e2e/images_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go
index 89e7d6769..6c2be1a4f 100644
--- a/test/e2e/images_test.go
+++ b/test/e2e/images_test.go
@@ -176,6 +176,7 @@ var _ = Describe("Podman images", func() {
})
It("podman images filter before image", func() {
+ Skip(v2remotefail)
dockerfile := `FROM docker.io/library/alpine:latest
RUN apk update && apk add strace
`
@@ -187,6 +188,7 @@ RUN apk update && apk add strace
})
It("podman images workingdir from image", func() {
+ Skip(v2remotefail)
dockerfile := `FROM docker.io/library/alpine:latest
WORKDIR /test
`
@@ -306,6 +308,7 @@ WORKDIR /test
})
It("podman images --all flag", func() {
+ Skip(v2remotefail)
podmanTest.RestoreAllArtifacts()
dockerfile := `FROM docker.io/library/alpine:latest
RUN mkdir hello
@@ -325,6 +328,7 @@ ENV foo=bar
})
It("podman images filter by label", func() {
+ Skip(v2remotefail)
dockerfile := `FROM docker.io/library/alpine:latest
LABEL version="1.0"
LABEL "com.example.vendor"="Example Vendor"
@@ -337,6 +341,7 @@ LABEL "com.example.vendor"="Example Vendor"
})
It("podman with images with no layers", func() {
+ Skip(v2remotefail)
dockerfile := strings.Join([]string{
`FROM scratch`,
`LABEL org.opencontainers.image.authors="<somefolks@example.org>"`,