diff --git a/.ci-mgmt.yaml b/.ci-mgmt.yaml index 617510e8df..35d64d2ea3 100644 --- a/.ci-mgmt.yaml +++ b/.ci-mgmt.yaml @@ -38,6 +38,6 @@ actions: make upstream - name: Run provider tests run: | - cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt + cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . # Use `pulumi convert` for translating examples from TF to Pulumi. pulumiConvert: 1 diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 425df0a708..a1580a8b72 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -195,7 +195,7 @@ jobs: make upstream - name: Run provider tests run: | - cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt + cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . - name: Run tests run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 strategy: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 9fe7d2110c..4601b8ff04 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -136,7 +136,7 @@ jobs: make upstream - name: Run provider tests run: | - cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt + cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . - name: Run tests run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . strategy: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d4d32920f9..5736af2851 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,7 +142,7 @@ jobs: make upstream - name: Run provider tests run: | - cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt + cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . - name: Run tests run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . strategy: diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index 4d74c3a8d0..5121476d96 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -191,7 +191,7 @@ jobs: make upstream - name: Run provider tests run: | - cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . 2>&1 | tee /tmp/gotest.log | gotestfmt + cd provider && go test -v -json -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 . - name: Run tests if: matrix.testTarget == 'local' run: cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -skip TestPulumiExamples -parallel 4 .