codeword/vendor/github.com/ClickHouse/clickhouse-go/Makefile
2024-08-27 22:09:10 +03:00

9 lines
161 B
Makefile

test:
go install -race -v
go test -i -v
go test -race -timeout 30s -v .
coverage:
go test -coverprofile=coverage.out -v .
go tool cover -html=coverage.out