filebrowser/backend/run_check_coverage.sh

4 lines
111 B
Bash
Raw Normal View History

2023-08-12 16:30:41 +00:00
#!/bin/bash
go test -race -v -coverpkg=./... -coverprofile=coverage.cov ./...
go tool cover -html=coverage.cov