diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca1276ec..030a95a0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -79,7 +79,8 @@ jobs: name: Terraform Provider Acceptance Tests needs: build runs-on: ubuntu-latest - timeout-minutes: 15 + # Timeout for tests set to 25 minutes to safeguard long running tests (specifically for service instances) + timeout-minutes: 25 strategy: fail-fast: false matrix: @@ -103,7 +104,7 @@ jobs: - run: go mod download - env: TF_ACC: "1" - run: go test -v -cover -coverprofile=cover.out -timeout=900s -parallel=4 ./... + run: go test -v -cover -coverprofile=cover.out -timeout=1800s -parallel=4 ./... timeout-minutes: 20 # Determine stripped version of Terraform - run: echo "CURRENT_TF_VERSION=$(echo ${{ matrix.terraform }} | sed 's/[^a-zA-Z0-9]//g')" >> $GITHUB_ENV