summaryrefslogtreecommitdiff
path: root/test/e2e/version_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/e2e/version_test.go')
-rw-r--r--test/e2e/version_test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/e2e/version_test.go b/test/e2e/version_test.go
index c6b71bec1..4670c6e1e 100644
--- a/test/e2e/version_test.go
+++ b/test/e2e/version_test.go
@@ -1,6 +1,7 @@
package integration
import (
+ "fmt"
"os"
. "github.com/onsi/ginkgo"
@@ -20,13 +21,13 @@ var _ = Describe("Podman version", func() {
os.Exit(1)
}
podmanTest = PodmanCreate(tempdir)
- podmanTest.RestoreAllArtifacts()
- podmanTest.RestoreArtifact(fedoraMinimal)
})
AfterEach(func() {
podmanTest.Cleanup()
-
+ f := CurrentGinkgoTestDescription()
+ timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds())
+ GinkgoWriter.Write([]byte(timedResult))
})
It("podman version", func() {