You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/flake-detector.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ jobs:
32
32
run: go mod download
33
33
34
34
- name: Test all except caching parallely
35
-
run: CGO_ENABLED=0 go test -count 5 -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` `go list ./... | grep -v internal/cache/...`
35
+
run: CGO_ENABLED=0 go test -count 20 -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` `go list ./... | grep -v internal/cache/...`
36
36
37
37
- name: Test caching
38
-
run: CGO_ENABLED=0 go test -p 1 -count 5 -v -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` ./internal/cache/...
38
+
run: CGO_ENABLED=0 go test -p 1 -count 20 -v -skip `cat flaky_tests.lst | go run tools/scripts/skip_tests/main.go` ./internal/cache/...
39
39
40
40
- name: Cache RaceDetector Test
41
-
run: CGO_ENABLED=0 go test -p 1 -count 5 ./internal/cache/...
41
+
run: CGO_ENABLED=0 go test -p 1 -count 20 ./internal/cache/...
0 commit comments