From 1d29bb25e9cf9a385681e8eec49f52bd68964a44 Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sat, 21 Oct 2023 16:21:52 -0700 Subject: [PATCH] Increase timeout since the control-r test is extremely slow --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 14b9c53..4dd0bed 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ forcetest: make test test: - TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=10 --rerun-fails-max-failures=30 --format testname --jsonfile /tmp/testrun.json -- -p 1 + TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=10 --rerun-fails-max-failures=30 --format testname --jsonfile /tmp/testrun.json -- -p 1 -timeout 60m ftest: go clean -testcache - TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=3 --format testname --jsonfile /tmp/testrun.json -- -p 1 -run "$(FILTER)" + TZ='America/Los_Angeles' HISHTORY_TEST=1 HISHTORY_SKIP_INIT_IMPORT=1 gotestsum --packages ./... --rerun-fails=3 --format testname --jsonfile /tmp/testrun.json -- -p 1 -run "$(FILTER)" -timeout 60m acttest: act push -j test -e .github/push_event.json --reuse --container-architecture linux/amd64