Skip to content

Commit

Permalink
Reduce number of iterations for flake-detector (#2874)
Browse files Browse the repository at this point in the history
  • Loading branch information
kislaykishore authored Jan 8, 2025
1 parent 16b1e7d commit 247da65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flake-detector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: go mod download

- name: Test all
run: CGO_ENABLED=0 go test -p 1 -timeout 75m -count 20 -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` `go list ./...`
run: CGO_ENABLED=0 go test -p 1 -timeout 75m -count 5 -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` `go list ./...`

- name: Cache RaceDetector Test
run: CGO_ENABLED=0 go test -p 1 -timeout 75m -count 20 ./internal/cache/...
run: CGO_ENABLED=0 go test -p 1 -timeout 75m -count 5 ./internal/cache/...

0 comments on commit 247da65

Please sign in to comment.