diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-30 15:49:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-30 15:49:26 +0100 |
commit | a35d002b722c9beb711796de4a62faf30d067387 (patch) | |
tree | 8d85600990c53b23867409f25aaaf8715e5879ea /test | |
parent | 63b57f5147462bef19df842f9c92868f7bdaea8a (diff) | |
parent | 2046be6ae04603a581d3caffb26fc970f43765a2 (diff) | |
download | podman-a35d002b722c9beb711796de4a62faf30d067387.tar.gz podman-a35d002b722c9beb711796de4a62faf30d067387.tar.bz2 podman-a35d002b722c9beb711796de4a62faf30d067387.zip |
Merge pull request #4376 from giuseppe/drop-ostree
build: drop support for ostree
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/push_test.go | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/e2e/push_test.go b/test/e2e/push_test.go index 50f0ca6d9..0747257be 100644 --- a/test/e2e/push_test.go +++ b/test/e2e/push_test.go @@ -203,23 +203,6 @@ var _ = Describe("Podman push", func() { Expect(session.ExitCode()).To(Equal(0)) }) - It("podman push to local ostree", func() { - if !IsCommandAvailable("ostree") { - Skip("ostree is not installed") - } - - ostreePath := filepath.Join(podmanTest.TempDir, "ostree/repo") - os.MkdirAll(ostreePath, os.ModePerm) - - setup := SystemExec("ostree", []string{strings.Join([]string{"--repo=", ostreePath}, ""), "init"}) - Expect(setup.ExitCode()).To(Equal(0)) - - session := podmanTest.PodmanNoCache([]string{"push", ALPINE, strings.Join([]string{"ostree:alp@", ostreePath}, "")}) - session.WaitWithDefaultTimeout() - Expect(session.ExitCode()).To(Equal(0)) - - }) - It("podman push to docker-archive no reference", func() { tarfn := filepath.Join(podmanTest.TempDir, "alp.tar") session := podmanTest.PodmanNoCache([]string{"push", ALPINE, |