Skip to content

Commit

Permalink
Remove verbose flag from go test runs (#2711)
Browse files Browse the repository at this point in the history
Remove the verbose flag from `make test`. This should reduce the noise
in test runs and also speed them up.

Failing tests will still print the whole stdout output.
  • Loading branch information
VenelinMartinov authored Dec 10, 2024
1 parent 22ff1c4 commit c309831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test:: install_plugins
@mkdir -p bin
go build -o bin ./internal/testing/pulumi-terraform-bridge-test-provider
PULUMI_TERRAFORM_BRIDGE_TEST_PROVIDER=$(shell pwd)/bin/pulumi-terraform-bridge-test-provider \
go test -v -count=1 -coverprofile="coverage.txt" -coverpkg=./... -timeout 2h -parallel ${TESTPARALLELISM} ./...
go test -count=1 -coverprofile="coverage.txt" -coverpkg=./... -timeout 2h -parallel ${TESTPARALLELISM} ./...

# Run tests while accepting current output as expected output "golden"
# tests. In case where system behavior changes intentionally this can
Expand Down

0 comments on commit c309831

Please sign in to comment.