From 02329dc80bad5bd340ad3761f2fd36ecf4ba4a3b Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 12 Nov 2025 11:25:29 -0300 Subject: [PATCH] chore(taskfile): add task to record all cassettes --- Taskfile.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Taskfile.yaml b/Taskfile.yaml index 5628079ae299a567bfaca732aa335e861096ca91..8a5d8dda1b13bcc1fefb9d7cfd1a7c08c53f6a0f 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -51,6 +51,13 @@ tasks: cmds: - go test ./... {{.CLI_ARGS}} + test:record: + desc: Run tests and record all VCR cassettes again + aliases: [record] + cmds: + - rm -r internal/agent/testdata + - go test -v -count=1 -timeout=1h ./internal/agent + fmt: desc: Run gofumpt cmds: