summaryrefslogtreecommitdiff
path: root/pkg/bindings/test/test_suite_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-05-13 12:30:14 -0700
committerGitHub <noreply@github.com>2020-05-13 12:30:14 -0700
commit71f66f03c5dcf8ab65c741e64c60ce12b01218a8 (patch)
tree3000cb5cb03f019dd8b18386330552ca109e2612 /pkg/bindings/test/test_suite_test.go
parent886b2cc4b10c32611b45da983fa9d1318d38356a (diff)
parentb6113e2b9ea8f397e345a09335c26f953994c6f4 (diff)
downloadpodman-71f66f03c5dcf8ab65c741e64c60ce12b01218a8.tar.gz
podman-71f66f03c5dcf8ab65c741e64c60ce12b01218a8.tar.bz2
podman-71f66f03c5dcf8ab65c741e64c60ce12b01218a8.zip
Merge pull request #6203 from jwhonce/wip/attach
V2 attach bindings and test
Diffstat (limited to 'pkg/bindings/test/test_suite_test.go')
-rw-r--r--pkg/bindings/test/test_suite_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/bindings/test/test_suite_test.go b/pkg/bindings/test/test_suite_test.go
index dc2b49b88..d2c2c7838 100644
--- a/pkg/bindings/test/test_suite_test.go
+++ b/pkg/bindings/test/test_suite_test.go
@@ -5,9 +5,14 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
+ "github.com/sirupsen/logrus"
)
func TestTest(t *testing.T) {
+ if testing.Verbose() {
+ logrus.SetLevel(logrus.DebugLevel)
+ }
+
RegisterFailHandler(Fail)
RunSpecs(t, "Test Suite")
}