Skip to content

Commit

Permalink
gotestfmt: hide successful tests and downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Jul 12, 2023
1 parent 93779be commit 88826c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Test
run: |
set -euo pipefail
go test -count=1 -covermode=atomic -coverpkg ./... -p 1 -v -json $(go list ./... | grep -v tests-e2e) -coverprofile synccoverage.out 2>&1 | tee ./test-integration.log | gotestfmt
go test -count=1 -covermode=atomic -coverpkg ./... -p 1 -v -json $(go list ./... | grep -v tests-e2e) -coverprofile synccoverage.out 2>&1 | tee ./test-integration.log | gotestfmt -hide successful-tests,successful-downloads
shell: bash
env:
POSTGRES_HOST: localhost
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Run end-to-end tests
run: |
set -euo pipefail
./run-tests.sh -count=1 -v -json . 2>&1 | tee test-e2e-runner.log | gotestfmt
./run-tests.sh -count=1 -v -json . 2>&1 | tee test-e2e-runner.log | gotestfmt -hide successful-tests,successful-downloads
working-directory: tests-e2e
shell: bash
env:
Expand Down

0 comments on commit 88826c6

Please sign in to comment.