Merge pull request #46 from rchincha/test-cleanup

.gitignore: ignore generated test artifacts
This commit is contained in:
Ravi Chamarthy
2019-12-13 14:59:26 -08:00
committed by GitHub
3 changed files with 4 additions and 1 deletions
+3
View File
@@ -13,3 +13,6 @@
bin/ bin/
bazel-* bazel-*
coverage.txt
test/data/
*.orig
+1 -1
View File
@@ -18,7 +18,7 @@ debug: doc
.PHONY: test .PHONY: test
test: test:
$(shell cd test/data; ./gen_certs.sh; cd ${TOP_LEVEL}) $(shell mkdir -p test/data; cd test/data; ../scripts/gen_certs.sh; cd ${TOP_LEVEL})
go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./... go test -v -race -cover -coverprofile=coverage.txt -covermode=atomic ./...
.PHONY: check .PHONY: check