Turn on version.go except for -v check

Currently podman -v does not work but the other version checks all pass.

enabling tests to that we can get more tests running in CI.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2020-04-22 15:16:31 -04:00
parent 366fc0520b
commit 34ee183ae6

View File

@@ -17,7 +17,6 @@ var _ = Describe("Podman version", func() {
)
BeforeEach(func() {
Skip(v2fail)
tempdir, err = CreateTempDirInTempDir()
if err != nil {
os.Exit(1)
@@ -43,6 +42,7 @@ var _ = Describe("Podman version", func() {
})
It("podman -v", func() {
Skip(v2fail)
session := podmanTest.Podman([]string{"-v"})
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))