We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c74849b commit b3d283fCopy full SHA for b3d283f
1 file changed
scripts/ci/testing/run_system_tests.sh
@@ -20,13 +20,15 @@ export COLOR_RED=$'\e[31m'
20
export COLOR_YELLOW=$'\e[33m'
21
export COLOR_RESET=$'\e[0m'
22
23
+TEST_TO_RUN="${*:-all configured system tests}"
24
+
25
set +e
26
breeze testing system-tests "${@}"
27
RESULT=$?
28
set -e
29
if [[ ${RESULT} != "0" ]]; then
30
echo
- echo "${COLOR_RED}The ${TEST_GROUP} system test ${TEST_TO_RUN} failed! Giving up${COLOR_RESET}"
31
+ echo "${COLOR_RED}The system tests (${TEST_TO_RUN}) failed! Giving up${COLOR_RESET}"
32
33
exit ${RESULT}
34
fi
0 commit comments