From 1b6227af11e9e84787d18c4c2bff730a4900ba09 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 16 Mar 2024 09:52:50 -0500 Subject: [PATCH] Remove verbose flag from go test command on CI 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. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7a37d1a..47ed2448 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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 }}