From 0405d1f3bfcad38c7c43968476ada02a6de02f9a Mon Sep 17 00:00:00 2001 From: Nick Ripley <97066770+nsrip-dd@users.noreply.github.com> Date: Fri, 30 Dec 2022 08:40:49 -0800 Subject: [PATCH] ci: increase multi-OS test timeout from 10 minutes to 15 minutes (#1637) 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. --- .github/workflows/multios-unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/multios-unit-tests.yml b/.github/workflows/multios-unit-tests.yml index 3bbef1b8c2..e1daced680 100644 --- a/.github/workflows/multios-unit-tests.yml +++ b/.github/workflows/multios-unit-tests.yml @@ -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()