Skip to content

Commit

Permalink
ci: don't test verbosely (#3026)
Browse files Browse the repository at this point in the history
Let's remove the noise in the tests. This will make sure the logs only
show the errors when they happen.
  • Loading branch information
thehowl authored Oct 28, 2024
1 parent 534e652 commit d03581e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# confusing and meticulous. There will be some improvements in Go
# 1.23 regarding coverage, so we can use this as a workaround until
# then.
go test -covermode=atomic -timeout ${{ inputs.tests-timeout }} -v ./... -test.gocoverdir=$GOCOVERDIR
go test -covermode=atomic -timeout ${{ inputs.tests-timeout }} ./... -test.gocoverdir=$GOCOVERDIR
# Print results
(set +x; echo 'go coverage results:')
Expand Down

0 comments on commit d03581e

Please sign in to comment.