Skip to content

Commit

Permalink
Merge pull request #119 from c4dt/rerun_crash_tests
Browse files Browse the repository at this point in the history
Running crash tests up to three times
  • Loading branch information
ineiti authored Feb 16, 2024
2 parents 9e6df75 + ed3df34 commit 4a0b3a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/go_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
uses: actions/checkout@v2

- name: Run the crash test
run: go test -timeout 10m -run TestCrash ./integration/...
run: |
for a in $( seq 3 ); do
echo "Testing sequence $a"
go test -timeout 10m -run TestCrash ./integration/... && exit 0
done
exit 1
revote:
name: Test revote
runs-on: ubuntu-latest
Expand Down

0 comments on commit 4a0b3a6

Please sign in to comment.