From 6d5a6b543b7fddd212a44b023c0dc8b8b7b70679 Mon Sep 17 00:00:00 2001 From: Volker Schukai <volker.schukai@schukai.com> Date: Sat, 16 Sep 2023 11:36:25 +0200 Subject: [PATCH] chore: wrong go test call #10 --- Taskfile.yml | 4 ++-- devenv.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 7095ba5..b7313f4 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -20,8 +20,8 @@ tasks: cmds: - echo "Execute unit tests in Go." - go test -cover -v ./... - - go test -bench . - - go test -race . + - go test -bench -v ./... + - go test -race -v ./... test-fuzz: desc: Conduct fuzzing tests.# diff --git a/devenv.nix b/devenv.nix index ee781c6..efd4d9b 100644 --- a/devenv.nix +++ b/devenv.nix @@ -185,8 +185,8 @@ cmds: - echo "Execute unit tests in Go." - go test -cover -v ./... - - go test -bench . - - go test -race . + - go test -bench -v ./... + - go test -race -v ./... test-fuzz: desc: Conduct fuzzing tests.# -- GitLab