fix(Makefile): adapt test command
All checks were successful
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Successful in 16s
Markdown linter / markdown-lint (push) Successful in 2s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Successful in 56s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Successful in 1m49s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Successful in 1m6s

This commit is contained in:
Markus Pesch 2025-06-01 13:32:57 +02:00
parent e4d457d73c
commit be67170a6f
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 3 additions and 8 deletions

9
.gitignore vendored
View File

@ -1,8 +1,3 @@
.idea/
vendor/
*.iml
build/
dist/
prometheus-fail2ban-exporter
coverage.txt
dist

View File

@ -40,7 +40,7 @@ PHONY+=test/unit
test/unit:
CGO_ENABLED=0 \
GOPROXY=$(shell go env GOPROXY) \
go test -v -p 1 -coverprofile=coverage.txt -covermode=count -timeout 1200s ./pkg/...
go test -v -p 1 -coverprofile=coverage.txt -covermode=count -timeout 1200s ./...
PHONY+=test/integration
test/integration: