Skip to content

Commit

Permalink
Disable -v mode on ci tests
Browse files Browse the repository at this point in the history
  - It makes the output more readable if it's off
  • Loading branch information
matthchr committed Jun 16, 2021
1 parent 8519e56 commit e49cbb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ tasks:
deps: [controller:generate-crds]
cmds:
# -race fails at the moment in controller-runtime
- go test -v -run '{{default ".*" .TEST_FILTER}}' ./...
- go test -run '{{default ".*" .TEST_FILTER}}' ./...

controller:test-integration-envtest-cover:
desc: Run integration tests with envtest using record/replay and output coverage.
dir: "{{.CONTROLLER_ROOT}}"
deps: [controller:generate-crds]
cmds:
# -race fails at the moment in controller-runtime
- go test -covermode atomic -coverprofile=coverage-integration-envtest.out -coverpkg="./..." -v -run '{{default ".*" .TEST_FILTER}}' ./...
- go test -covermode atomic -coverprofile=coverage-integration-envtest.out -coverpkg="./..." -run '{{default ".*" .TEST_FILTER}}' ./...

controller:test-integration-envtest-live:
desc: Run integration tests with envtest against live data and output coverage.
Expand Down

0 comments on commit e49cbb2

Please sign in to comment.