summaryrefslogtreecommitdiff
path: root/test/e2e/build_test.go
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-04-28 08:58:06 +0200
committerValentin Rothberg <rothberg@redhat.com>2020-04-28 08:58:06 +0200
commit34b2ccae4c218f36ff71def8a1bb5dd5d4ddbfb5 (patch)
treea04260618795d9c559b2913cce2083b0376fb100 /test/e2e/build_test.go
parentebf041652e93487b8afbac2bc4d9031d8547d866 (diff)
downloadpodman-34b2ccae4c218f36ff71def8a1bb5dd5d4ddbfb5.tar.gz
podman-34b2ccae4c218f36ff71def8a1bb5dd5d4ddbfb5.tar.bz2
podman-34b2ccae4c218f36ff71def8a1bb5dd5d4ddbfb5.zip
enable build tests
One test is still being skipped as container creation doesn't yet set certain data from the image (e.g., PATH). Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/e2e/build_test.go')
-rw-r--r--test/e2e/build_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/build_test.go b/test/e2e/build_test.go
index 3ccee3575..76651283a 100644
--- a/test/e2e/build_test.go
+++ b/test/e2e/build_test.go
@@ -22,7 +22,6 @@ var _ = Describe("Podman build", func() {
)
BeforeEach(func() {
- Skip(v2fail)
tempdir, err = CreateTempDirInTempDir()
if err != nil {
os.Exit(1)
@@ -178,6 +177,7 @@ var _ = Describe("Podman build", func() {
})
It("podman Test PATH in built image", func() {
+ Skip(v2fail) // Run error - we don't set data from the image (i.e., PATH) yet
path := "/tmp:/bin:/usr/bin:/usr/sbin"
session := podmanTest.PodmanNoCache([]string{
"build", "-f", "build/basicalpine/Containerfile.path", "-t", "test-path",