ai testing

This commit is contained in:
2026-04-05 23:21:42 +02:00
parent 9cf919b42b
commit 82fc2c9191
8 changed files with 346 additions and 4 deletions

13
mise.toml Normal file
View File

@@ -0,0 +1,13 @@
[tools]
go = "latest"
restic = "latest"
[tasks.test]
run = "go test -v ./..."
[tasks.coverage]
run = "go test -coverprofile=coverage.out ./... && go tool cover -func=coverage.out && go tool cover -html=coverage.out -o coverage.html"
description = "Generate coverage report"
[tasks.clean]
run = "rm -f coverage.out coverage.html"