Merge pull request #3347 from nspcc-dev/inc-test-timeout

workflows: give tests more time
This commit is contained in:
Anna Shaleva 2024-03-11 10:38:15 +03:00 committed by GitHub
commit 0e47d662b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,7 +104,7 @@ jobs:
cache: true
- name: Write coverage profile
run: go test -v ./... -coverprofile=./coverage.txt -covermode=atomic -coverpkg=./pkg...,./cli/...
run: go test -timeout 15m -v ./... -coverprofile=./coverage.txt -covermode=atomic -coverpkg=./pkg...,./cli/...
- name: Upload coverage results to Codecov
uses: codecov/codecov-action@v3
@ -150,4 +150,4 @@ jobs:
go-version: '${{ matrix.go_versions }}'
- name: Run tests
run: go test -v -race ./...
run: go test -timeout 15m -v -race ./...