Skip to content

Commit 995de74

Browse files
committed
chore: Increase windows ci test timeout from 5m to 10m
1 parent 49d3cb0 commit 995de74

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/coder.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,11 @@ jobs:
303303
echo ::set-output name=cover::false
304304
fi
305305
set -x
306-
gotestsum --junitfile="gotests.xml" --packages="./..." -- -parallel=8 -timeout=5m -short -failfast $COVERAGE_FLAGS
306+
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
307311
308312
- name: Upload DataDog Trace
309313
if: github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork

0 commit comments

Comments
 (0)