We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 982f4fa commit ebf8e64Copy full SHA for ebf8e64
Makefile
@@ -0,0 +1,13 @@
1
+test:
2
+ @./go.test.sh
3
+
4
+coverage:
5
+ @./go.coverage.sh
6
7
+test_fast:
8
+ go test ./...
9
10
+tidy:
11
+ go mod tidy
12
13
+.PHONY: tidy coverage test test_fast
go.coverage.sh
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+set -e
+go test -race -v -coverpkg=./... -coverprofile=profile.out ./...
+go tool cover -func profile.out
go.test.sh
@@ -0,0 +1,9 @@
+echo "test"
+go test --timeout 5m ./...
+echo "test -race"
+go test --timeout 5m -race ./...
0 commit comments