We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49d3cb0 commit 995de74Copy full SHA for 995de74
.github/workflows/coder.yaml
@@ -303,7 +303,11 @@ jobs:
303
echo ::set-output name=cover::false
304
fi
305
set -x
306
- gotestsum --junitfile="gotests.xml" --packages="./..." -- -parallel=8 -timeout=5m -short -failfast $COVERAGE_FLAGS
+ test_timeout=5m
307
+ if [[ ${{ matrix.os }} == windows* ]]; then
308
+ test_timeout=10m
309
+ fi
310
+ gotestsum --junitfile="gotests.xml" --packages="./..." -- -parallel=8 -timeout=$test_timeout -short -failfast $COVERAGE_FLAGS
311
312
- name: Upload DataDog Trace
313
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork
0 commit comments