From 5f459534b47c8aecbf420e84947a98eddfa382d8 Mon Sep 17 00:00:00 2001 From: Andrea Fasano Date: Mon, 16 Oct 2023 08:49:36 -0400 Subject: [PATCH] disabling test timeout --- hack/go-integration-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/go-integration-test.sh b/hack/go-integration-test.sh index a637083701..8c6ec58a37 100755 --- a/hack/go-integration-test.sh +++ b/hack/go-integration-test.sh @@ -1,4 +1,4 @@ #!/bin/sh # Example: ./hack/go-integration-test.sh -go test -parallel 1 -p 1 -run .Integration ./cmd/... ./data/... ./pkg/... "${@}" +go test -parallel 1 -p 1 -timeout 0 -run .Integration ./cmd/... ./data/... ./pkg/... "${@}"