Added make task with coverage and race analysis (#754)

* Added make task with coverage and race analysis

* removed coverage and race conditons from test task

* changed test-analyze-go to analyze-go
This commit is contained in:
John Murphy
2017-01-04 15:59:17 -06:00
committed by GitHub
parent 4a7e74fdfa
commit f4ae2c1446
+5 -1
View File
@@ -98,7 +98,11 @@ lint-go:
lint: lint-go lint-js lint-scss lint-ts
test-go:
go test -cover $(shell glide nv)
go test $(shell glide nv)
analyze-go:
go test -race -cover $(shell glide nv)
test-js: export NODE_PATH = ./frontend
test-js: