Skip to content

Commit

Permalink
Change test tasks.
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Jan 31, 2024
1 parent 96316e5 commit c79bdaf
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Taskfile.dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,17 @@ tasks:
test:
desc: "Run the test suite."
cmds:
- set -o pipefail && go test ./... -json | tparse -all
#- set -o pipefail && go test ./... -json | tparse -all
- go test -count 1 ./...
nil:
desc: "Run the static analysis techniques to catch Nil dereferences."
cmds:
- nilaway ./...
testr:
desc: "Run the test suite with the slower race detection."
cmds:
- set -o pipefail && go test ./... -json | tparse -all
#- go test -race -v ./...
#- set -o pipefail && go test ./... -json | tparse -all
- go test -count 1 -race ./...
serve:
desc: "Run the internal web server in development mode with live reload."
cmds:
Expand Down

0 comments on commit c79bdaf

Please sign in to comment.