From 8edff4dfec90c2a8ca7f6fe42e9f684fd117dcd3 Mon Sep 17 00:00:00 2001
From: Volker Schukai <volker.schukai@schukai.com>
Date: Sat, 16 Sep 2023 11:35:31 +0200
Subject: [PATCH] chore: wrong go test call #3

---
 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