Skip to content

Commit

Permalink
ci: increase multi-OS test timeout from 10 minutes to 15 minutes (#1637)
Browse files Browse the repository at this point in the history
The ddtrace/tracer tests take longer than 10 minutes to run on the
GitHub Windows runners. Since 10 minutes is the default Go test timeout,
that means the tests are now failing to complete. Increase the timeout
to 15 minutes to give more headroom until we can figure out why the
tests are taking so long.
  • Loading branch information
nsrip-dd committed Dec 30, 2022
1 parent a76b1cb commit 0405d1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/multios-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
shell: bash
run: |
go list ./... | grep -v -e grpc.v12 -e google.golang.org/api -e sarama -e confluent-kafka-go -e cmemprof | sort >packages.txt
gotestsum --junitfile ${REPORT} -- $(cat packages.txt) -v -coverprofile=coverage.txt -covermode=atomic
gotestsum --junitfile ${REPORT} -- $(cat packages.txt) -v -coverprofile=coverage.txt -covermode=atomic -timeout=15m
- name: Upload the results to Datadog CI App
if: always()
Expand Down

0 comments on commit 0405d1f

Please sign in to comment.