From eec946d20cb11f95604f5fce2c59df104df3213d Mon Sep 17 00:00:00 2001 From: Wojciech Tyczynski Date: Tue, 21 Feb 2017 11:39:26 +0100 Subject: [PATCH] Debug what is hapening in large clusters --- test/e2e/e2e.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/e2e/e2e.go b/test/e2e/e2e.go index c31a3f858de..89aa54af591 100644 --- a/test/e2e/e2e.go +++ b/test/e2e/e2e.go @@ -223,9 +223,11 @@ func RunCleanupActions() { // and then the function that only runs on the first Ginkgo node. var _ = ginkgo.SynchronizedAfterSuite(func() { // Run on all Ginkgo nodes + framework.Logf("Running AfterSuite actions on all node") RunCleanupActions() }, func() { // Run only Ginkgo on node 1 + framework.Logf("Running AfterSuite actions on node 1") if framework.TestContext.ReportDir != "" { framework.CoreDump(framework.TestContext.ReportDir) }