gotestfmt: hide successful jobs, packages, tests and downloads

This commit is contained in:
David Robertson 2023-07-26 11:44:59 +01:00
parent 142290fa0e
commit 56411d671e
No known key found for this signature in database
GPG Key ID: 903ECE108A39DEDD

View File

@ -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) -hide all -coverprofile synccoverage.out 2>&1 | tee ./test-integration.log | gotestfmt
shell: bash
env:
POSTGRES_HOST: localhost
@ -144,7 +144,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 -hide all | tee test-e2e-runner.log | gotestfmt
working-directory: tests-e2e
shell: bash
env: