From 2d48ae6f36e24b988c212ce46798b99a0b2fb060 Mon Sep 17 00:00:00 2001 From: lwolczynski Date: Thu, 10 Oct 2024 14:40:51 -0500 Subject: [PATCH] IWF-186: Bump all tests timeout --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b1ca869f..a1975bc3 100644 --- a/Makefile +++ b/Makefile @@ -168,7 +168,7 @@ integTestsTemporalWithCover: # for local debugging $Q go tool cover -func coverage.out -o coverage.out integTests: - $Q go test -v ./integ + $Q go test -v ./integ -timeout=15 temporalIntegTests: $Q go test -v ./integ -cadence=false @@ -183,10 +183,10 @@ ci-temporal-integ-test: $Q go test -v ./integ -cover -coverprofile coverage.out -coverpkg ./service/... -search=false -cadence=false -dependencyWaitSeconds=60 ci-all-tests: - $Q go test -v ./... -cover -coverprofile coverage.out -coverpkg ./service/... + $Q go test -v ./... -timeout=15 -cover -coverprofile coverage.out -coverpkg ./service/... integTestsNoSearch: - $Q go test -v ./integ -search=false + $Q go test -v ./integ -search=false -timeout=15 stressTestsWithSearch: $Q go test -v ./integ -repeat=10 -intervalMs=100 -searchWaitMs=100 | tee test.log # TODO https://github.com/indeedeng/iwf/issues/134