Skip to content

Commit 80ef658

Browse files
author
Nicholas M. Iodice
authored
Adding longer timeout to acceptance test script (#278)
1 parent a5824b0 commit 80ef658

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/acctest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ info "Executing acceptance tests"
1616
# - A `-run` parameter is used to target *only* tests starting with `TestAcc`. This prefix is
1717
# recommended by Hashicorp and is documented here:
1818
# https://www.terraform.io/docs/extend/testing/acceptance-tests/index.html#test-files
19-
TF_ACC=1 go test -run ^TestAcc -tags "${*:-all}" -v ./... || fatal "Build finished in error due to failed tests"
19+
TF_ACC=1 go test -timeout 120m -run ^TestAcc -tags "${*:-all}" -v ./... || fatal "Build finished in error due to failed tests"
2020
)

0 commit comments

Comments
 (0)