From 19e737fffb8981601b331a14d991fd36f201a75d Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 9 Sep 2025 15:01:27 -0300 Subject: [PATCH] chore(taskfile): disable cache when running tests --- Taskfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index cd98cbdf4cb3ce942d2a9fffe4869270f03f0420..992bafd42e556f1c2bbd2dffda81f4b1c4e564fe 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -19,4 +19,4 @@ tasks: test: desc: Run tests for all packages cmds: - - go test ./... {{.CLI_ARGS}} + - go test ./... -count=1 {{.CLI_ARGS}}