Skip to content

Commit

Permalink
More iteration on failure?
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Feb 12, 2024
1 parent 72fbeb4 commit c1705a7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ jobs:
- run: |
# Run the tests
set -o pipefail
set -e
aiken check | tee aiken.log
RESULT=$?
RESULT=0
aiken check | tee aiken.log || RESULT=$?
if [ $RESULT -ne 0 ]; then
FAILING_TESTS=$(grep "FAIL" aiken.log -A 1)
echo $FAILING_TESTS
Expand Down

0 comments on commit c1705a7

Please sign in to comment.