From abd1bd7382bc851443cd2de4557000236f3f56e9 Mon Sep 17 00:00:00 2001 From: Alex Peters Date: Wed, 28 Jun 2023 11:39:06 +0200 Subject: [PATCH] Revert "Increase wait time for system tests" This reverts commit 1b233bc30b270b031237d9a4a71b074211faf565. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b78ff298b3..6e4eb965d5 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ test-sim-deterministic: runsim @$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 1 1 TestAppStateDeterminism test-system: install - @VERSION=$(VERSION) cd tests/system; go test -mod=readonly -failfast -tags='system_test' ./... --wait-time=60s --verbose; EXIT_CODE=$$?; cd -; exit $$EXIT_CODE + @VERSION=$(VERSION) cd tests/system; go test -mod=readonly -failfast -tags='system_test' ./... --wait-time=45s --verbose; EXIT_CODE=$$?; cd -; exit $$EXIT_CODE ############################################################################### ### Linting ###