1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-09-16 09:26:22 +02:00

Provide a timeout of 20m for the go Integration Tests (#1613)

* Provide a timeout of 20m for the go IT
Default is 10m, see https://golang.org/cmd/go/#hdr-Testing_flags
Co-authored-by: Daniel Kurzynski <daniel.kurzynski@sap.com>
This commit is contained in:
Stephan Aßmus
2020-05-28 18:28:38 +02:00
committed by GitHub
parent 6db5beb2ec
commit 6a96629d65
3 changed files with 3 additions and 3 deletions

View File

@@ -2,5 +2,5 @@
pushd ..
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags release -o piper
go test -tags=integration ./integration/...
go test -tags=integration -timeout 20m ./integration/...
popd