Skip to content

Commit fd48321

Browse files
committed
Do not pipe stderr to gotestfmt, as it will often panic on the non-JSON formatted output.
1 parent 8823b37 commit fd48321

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ jobs:
330330
if [[ "$TEST_SUITE_TAGS" == "all" ]]; then
331331
TIMEOUT=120m
332332
fi
333-
SHELL='${{ matrix.sys.shell }}' go test -timeout $TIMEOUT -v `go list ./... | grep "integration"` -json 2>&1 | gotestfmt -hide empty-packages
333+
SHELL='${{ matrix.sys.shell }}' go test -timeout $TIMEOUT -v `go list ./... | grep "integration"` -json | gotestfmt -hide empty-packages
334334
continue-on-error: ${{ github.event_name == 'schedule' }}
335335
env:
336336
INTEGRATION_TEST_USERNAME: ${{ secrets.INTEGRATION_TEST_USERNAME }}

0 commit comments

Comments
 (0)