From e91e6ab2379704d6fc354630a1fee2228b828411 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Tue, 27 Sep 2022 22:02:55 -0700 Subject: [PATCH] Add longer timeout for running tests because github actions on macos are slow --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 56928e6..68f6c21 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ forcetest: go clean -testcache - HISHTORY_TEST=1 go test -p 1 ./... + HISHTORY_TEST=1 go test -p 1 -timeout 20m ./... test: - HISHTORY_TEST=1 go test -p 1 ./... + HISHTORY_TEST=1 go test -p 1 -timeout 20m ./... acttest: act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64