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: Makefile
+5-3
Original file line number
Diff line number
Diff line change
@@ -168,7 +168,7 @@ integTestsTemporalWithCover: # for local debugging
168
168
$Q go tool cover -func coverage.out -o coverage.out
169
169
170
170
integTests:
171
-
$Q go test -v ./integ
171
+
$Q go test -v ./integ -timeout 15m
172
172
173
173
temporalIntegTests:
174
174
$Q go test -v ./integ -cadence=false
@@ -183,10 +183,12 @@ ci-temporal-integ-test:
183
183
$Q go test -v ./integ -cover -coverprofile coverage.out -coverpkg ./service/... -search=false -cadence=false -dependencyWaitSeconds=60
184
184
185
185
ci-all-tests:
186
-
$Q go test -v ./... -cover -coverprofile coverage.out -coverpkg ./service/...
186
+
# Fails CI when used with -coverprofile flag due to tests that panic; see https://go.dev/doc/build-cover#panicprof
187
+
# $Q go test -v ./... -timeout 15m -cover -coverprofile coverage.out -coverpkg ./service/...
188
+
$Q go test -v ./... -timeout 15m
187
189
188
190
integTestsNoSearch:
189
-
$Q go test -v ./integ -search=false
191
+
$Q go test -v ./integ -search=false -timeout 15m
190
192
191
193
stressTestsWithSearch:
192
194
$Q go test -v ./integ -repeat=10 -intervalMs=100 -searchWaitMs=100 | tee test.log # TODO https://github.com/indeedeng/iwf/issues/134
0 commit comments