From f0b7c44d2c61de758ec212001e2dd2a0553fd028 Mon Sep 17 00:00:00 2001 From: Pi Lanningham Date: Fri, 8 Mar 2024 13:03:41 -0500 Subject: [PATCH] Tests are silent, unless they fail --- .github/workflows/tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 030110d..46251e5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,8 +19,9 @@ jobs: # Run the tests set -o pipefail RESULT=0 - aiken check 2>&1 | tee aiken.log || RESULT=$? + aiken check -t silent 2>&1 || RESULT=$? if [ $RESULT -ne 0 ]; then + aiken check 2>&1 | tee aiken.log { echo 'FAILING_TESTS<