Closed tpantelis closed 6 months ago
🤖 Created branch: z_pr1099/tpantelis/verify_output 🚀 Full E2E won't run until the "ready-to-test" label is applied. I will add it automatically once the PR has 2 approvals, or you can add it manually.
🤖 Closed branches: [z_pr1099/tpantelis/verify_output]
It's useful to see the names of test specs that were run. In order to do this, we need to set the
Verbose
flag in the ginkgoReporterConfig
but this also outputs the steps produced via theginkgo.By
function. We can use the--verbose
CLI flag to suppress theginkgo.By
output by using the override provided by the shipyard framework. We can also eliminate the output forSynchronizedBeforeSuite
/SynchronizedAfterSuite
by callingframework.BeforeSuite
/framework.RunCleanupActions
directly.See individual commits for details.
Here's the condensed output without the
--verbose
flag:Here's the output with the
--verbose
flag (truncated to show only one test):Fixes https://github.com/submariner-io/subctl/issues/131