From d449774e5a8f766d3ab9a345082f90b105b00fdc Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Mon, 5 May 2025 23:22:16 +0200 Subject: [PATCH] ci: Print verbose output for failed test jobs --- utils/tests/gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/tests/gitlab-ci.yml b/utils/tests/gitlab-ci.yml index eadc1d38a..33f75b7a5 100644 --- a/utils/tests/gitlab-ci.yml +++ b/utils/tests/gitlab-ci.yml @@ -77,7 +77,7 @@ workflow: then `touch build/tests-$CI_COMMIT_REF_SLUG.txt`; fi - if [[ "$CI_JOB_STAGE" == "test" ]] && [[ "$MODE" != "debug" ]] && [[ -f build/tests-$CI_COMMIT_REF_SLUG.txt ]]; - then ./test.py -n; + then ./test.py -n --verbose-failed; if [[ $? == 0 ]]; then `rm build/tests-$CI_COMMIT_REF_SLUG.txt` || true; fi;