From f10071189ad67597977c72b996c5dc9f5bdd8ced Mon Sep 17 00:00:00 2001 From: Keepers Date: Wed, 28 Sep 2022 13:56:20 -0600 Subject: [PATCH] hide successful test outputs in ci action (#965) ## Type of change - [x] :computer: CI/Deployment --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9992cf222..3dcc6ef3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: TENANT_ID: ${{ secrets.TENANT_ID }} run: | set -euo pipefail - go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt + go test -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt -hide successful-tests # Upload the original go test log as an artifact for later review. - name: Upload test log