ci: Print verbose output for failed test jobs

This commit is contained in:
Gabriel Ferreira
2025-05-05 23:22:16 +02:00
parent 3db8c759ca
commit d449774e5a

View File

@@ -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;