From 47d9589e9b0b09efc55c59d3b5421bcd0e10b607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Mon, 27 May 2024 04:59:54 +0200 Subject: [PATCH] tests: kata-deploy: Show output of passing tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will help us to debug failures and compare passing and failures outputs. Signed-off-by: Fabiano FidĂȘncio --- tests/functional/kata-deploy/run-kata-deploy-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/kata-deploy/run-kata-deploy-tests.sh b/tests/functional/kata-deploy/run-kata-deploy-tests.sh index 859bebf2e..a071e204a 100644 --- a/tests/functional/kata-deploy/run-kata-deploy-tests.sh +++ b/tests/functional/kata-deploy/run-kata-deploy-tests.sh @@ -21,5 +21,5 @@ fi info "Run tests" for KATA_DEPLOY_TEST_ENTRY in ${KATA_DEPLOY_TEST_UNION[@]} do - bats "${KATA_DEPLOY_TEST_ENTRY}" + bats --show-output-of-passing-tests "${KATA_DEPLOY_TEST_ENTRY}" done