Skip to content

Commit

Permalink
Remove verbose flag from go test command on CI
Browse files Browse the repository at this point in the history
It is more often that interesting information is buried by the verbose
output than the verbose output is useful. It can be reenabled later if
necessary.
  • Loading branch information
jackc committed Mar 16, 2024
1 parent c1fce37 commit 1b6227a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Test
# parallel testing is disabled because somehow parallel testing causes Github Actions to kill the runner.
run: go test -parallel=1 -v -race ./...
run: go test -parallel=1 -race ./...
env:
PGX_TEST_DATABASE: ${{ matrix.pgx-test-database }}
PGX_TEST_UNIX_SOCKET_CONN_STRING: ${{ matrix.pgx-test-unix-socket-conn-string }}
Expand Down Expand Up @@ -151,6 +151,6 @@ jobs:

- name: Test
# parallel testing is disabled because somehow parallel testing causes Github Actions to kill the runner.
run: go test -parallel=1 -v -race ./...
run: go test -parallel=1 -race ./...
env:
PGX_TEST_DATABASE: ${{ steps.postgres.outputs.connection-uri }}

0 comments on commit 1b6227a

Please sign in to comment.