Skip to content

Commit 02819ff

Browse files
committed
Use --abort-on-first-fail in CI
1 parent 1cef399 commit 02819ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FlashMQTests/run-tests-from-ci.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ STDERR_LOG=$(mktemp)
44

55
cd buildtests || exit 1
66

7-
if ./flashmq-tests 2> "$STDERR_LOG" ; then
7+
# Using --abort-on-first-fail because the output can be hard to find in CI when it's swamped out by the rest.
8+
if ./flashmq-tests --abort-on-first-fail 2> "$STDERR_LOG" ; then
89
echo -e '\033[01;32mSUCCESS!\033[00m'
910
else
1011
echo -e '\033[01;31mBummer\033[00m'

0 commit comments

Comments
 (0)