diff options
author | baude <bbaude@redhat.com> | 2019-03-06 10:29:11 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-03-08 13:28:33 -0600 |
commit | d5546008ab00d2a192eff4ad93e53e1f24e93e4c (patch) | |
tree | b3c6fe100edd84e9a199c016498b871bfe94bff7 /test/e2e/run_staticip_test.go | |
parent | be6ad02049780027d0c2e1506d9c6bb56d8abd26 (diff) | |
download | podman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.tar.gz podman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.tar.bz2 podman-d5546008ab00d2a192eff4ad93e53e1f24e93e4c.zip |
ginkgo status improvements
a series of improvements to our ginkgo test framework so we can
get better ideas of whats going on when run in CI
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/run_staticip_test.go')
-rw-r--r-- | test/e2e/run_staticip_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/e2e/run_staticip_test.go b/test/e2e/run_staticip_test.go index bf50e5eb7..464f9513a 100644 --- a/test/e2e/run_staticip_test.go +++ b/test/e2e/run_staticip_test.go @@ -3,7 +3,6 @@ package integration import ( - "fmt" "os" . "github.com/containers/libpod/test/utils" @@ -24,6 +23,7 @@ var _ = Describe("Podman run with --ip flag", func() { os.Exit(1) } podmanTest = PodmanTestCreate(tempdir) + podmanTest.Setup() podmanTest.RestoreAllArtifacts() // Cleanup the CNI networks used by the tests os.RemoveAll("/var/lib/cni/networks/podman") @@ -32,8 +32,8 @@ var _ = Describe("Podman run with --ip flag", func() { AfterEach(func() { podmanTest.Cleanup() f := CurrentGinkgoTestDescription() - timedResult := fmt.Sprintf("Test: %s completed in %f seconds", f.TestText, f.Duration.Seconds()) - GinkgoWriter.Write([]byte(timedResult)) + processTestResult(f) + }) It("Podman run --ip with garbage address", func() { |