Skip to content

Commit

Permalink
Increase tests timeout time
Browse files Browse the repository at this point in the history
  • Loading branch information
denisonbarbosa committed Dec 17, 2024
1 parent 751c325 commit dbb7c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ jobs:
iscc.exe //DAPP_VERSION=$INSTALLER_VERSION installer/setup.iss
shell: bash
- name: Run tests
run: go test ${{ env.packages }}
run: go test -timeout 900s ${{ env.packages }}
- name: Run tests (with race detector)
env:
ADSYS_SKIP_INTEGRATION_TESTS: 1
run: go test -race ${{ env.packages }}
run: go test -timeout 900s -race ${{ env.packages }}
# There are some cryptic "The pipe has been closed" errors on Windows
# that arise from running the tests with the race detector enabled. We
# believe this originates outside our code, thus we avoid running the
Expand Down

0 comments on commit dbb7c34

Please sign in to comment.