Add longer timeout for running tests because github actions on macos are slow

This commit is contained in:
David Dworken 2022-09-27 22:02:55 -07:00
parent 9a4e3a0a24
commit e91e6ab237

View File

@ -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