Skip to content

Commit

Permalink
Repeat each test separately
Browse files Browse the repository at this point in the history
  • Loading branch information
masih committed Oct 15, 2024
1 parent f3bc4f5 commit 860e6ac
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/test-f3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
go:
- 1.22
test:
# - TestF3_Enabled
# - TestF3_Rebootstrap
# - TestF3_PauseAndRebootstrap
# - TestF3_Bootstrap
- 'TestF3_.+'
- TestF3_Enabled
- TestF3_Rebootstrap
- TestF3_PauseAndRebootstrap
- TestF3_Bootstrap
# - 'TestF3_.+'
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -27,4 +27,5 @@ jobs:
- uses: ./.github/actions/install-go
- uses: ./.github/actions/make-deps
- name: Repeat ${{ matrix.test }}
run: go test -timeout 30m -count 50 -v --run='^TestF3_.+' --failfast ./itests
# run: go test -timeout 30m -count 50 -v --run='^TestF3_.+' --failfast ./itests
run: go test -timeout 30m -count 50 -v --run='^{{ matrix.test }}$' --failfast ./itests

0 comments on commit 860e6ac

Please sign in to comment.