Skip to content

Commit

Permalink
fix(ci): bandaid for flaky macOS tests (#22239)
Browse files Browse the repository at this point in the history
* fix(ci): bandaid for flaky macOS tests

* slightly increase timeout
  • Loading branch information
pront authored Jan 17, 2025
1 parent 56d6a7d commit 681f08d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/unit_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,15 @@ jobs:
- run: bash scripts/environment/bootstrap-macos.sh
- run: bash scripts/environment/prepare.sh
- run: echo "::add-matcher::.github/matchers/rust.json"
- run: make test

# Some tests e.g. `reader_exits_cleanly_when_writer_done_and_in_flight_acks` are flaky.
- name: Run tests
uses: nick-fields/retry@v3
with:
timeout_minutes: 45
max_attempts: 3
command: make test

- run: make test-behavior

- name: (PR review) Set latest commit status as ${{ job.status }}
Expand Down

0 comments on commit 681f08d

Please sign in to comment.