Skip to content

Commit

Permalink
ci,test: manually retry on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Oct 30, 2023
1 parent e49cd49 commit dc30f76
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test_core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
- name: Install core
run: raco pkg install -D --batch --auto --name franz core/
- name: Run tests
run: raco test core/
run: |
# HACK: Retry to get around 'coordinator not available' errors.
raco test core/ || \
raco test core/ || \
raco test core/
env:
FRANZ_INTEGRATION_TESTS: x

0 comments on commit dc30f76

Please sign in to comment.