Skip to content

Commit 1aa3b2f

Browse files
committed
Investigate flaky F3 tests
Attempt to reproduce flaky tests on CI.
1 parent f46fd35 commit 1aa3b2f

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/flake-that.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Repeat Flaky Tests
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
test:
8+
name: ${{ matrix.test }} ${{ matrix.go }}
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
go:
14+
- 1.22
15+
- 1.23
16+
test:
17+
- TestF3
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
submodules: 'recursive'
23+
- name: Repeat ${{ matrix.test }}
24+
run: go test -timeout 10m -count 10 -v --run='^${{ matrix.test }}' --failfast .
25+
- name: Repeat ${{ matrix.test }} with race detector
26+
run: go test -timeout 10m -count 10 -v --race --run='^${{ matrix.test }}' --failfast .

0 commit comments

Comments
 (0)