Skip to content

Commit

Permalink
CI: set timeout to 20m
Browse files Browse the repository at this point in the history
  • Loading branch information
sveitser committed Nov 30, 2023
1 parent f36af99 commit 6129caf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ jobs:
if: matrix.test-mode == 'defaults'
run: |
packages=`go list ./...`
gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 -- -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/...
gotestsum --format short-verbose --packages="$packages" --rerun-fails=1 -- -timeout 20m -coverprofile=coverage.txt -covermode=atomic -coverpkg=./...,./go-ethereum/...
- name: run tests with race detection
if: matrix.test-mode == 'race'
Expand All @@ -167,7 +167,7 @@ jobs:
- name: run redis tests
if: matrix.test-mode == 'defaults'
run: TEST_REDIS=redis://redis:6379/0 gotestsum --format short-verbose -- -p 1 -run TestRedis ./arbnode/... ./system_tests/... -coverprofile=coverage-redis.txt -covermode=atomic -coverpkg=./...
run: TEST_REDIS=redis://redis:6379/0 gotestsum --format short-verbose -- -timeout 20m -p 1 -run TestRedis ./arbnode/... ./system_tests/... -coverprofile=coverage-redis.txt -covermode=atomic -coverpkg=./...

- name: run challenge tests
if: matrix.test-mode == 'challenge'
Expand Down

0 comments on commit 6129caf

Please sign in to comment.