We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbce22d commit d47a5c8Copy full SHA for d47a5c8
Makefile
@@ -160,11 +160,14 @@ test_cov: test_cov_out
160
test_cov_pc_assert:
161
go tool cover -func=coverage.txt | ag assert
162
163
+test_cov_zero:
164
+ go tool cover -func=coverage.txt | ag '\:\s*[A-Z]+.*\s+0\.0%'
165
+
166
+test_cov_assert_zero:
167
+ go tool cover -func=coverage.txt | ag 'assert\/.*\:\s*[A-Z]+.*\s+0\.0%'
168
169
test_cov_pc:
170
go tool cover -func=coverage.txt
171
172
lint:
173
@golangci-lint run
-
-.PHONY: check
0 commit comments