remove external testing reference from Makefile

This commit is contained in:
Aaron Meihm 2017-07-19 16:59:11 -05:00
Родитель c5cf285168
Коммит 69bc11b133
1 изменённых файлов: 2 добавлений и 5 удалений

Просмотреть файл

@ -13,7 +13,7 @@ scribecmd:
scribevulnpolicy:
$(GO) install github.com/mozilla/scribe/scribevulnpolicy
runtests: scribetests gotests
runtests: gotests
gotests:
$(GO) test -v -covermode=count -coverprofile=coverage.out github.com/mozilla/scribe
@ -21,9 +21,6 @@ gotests:
showcoverage: gotests
$(GO) tool cover -html=coverage.out
scribetests: $(PROJS)
cd test && SCRIBECMD=$$(which scribecmd) $(MAKE) runtests
lint:
$(GOLINT) $(PROJECT)
@ -41,4 +38,4 @@ clean:
rm -f bin/*
cd test && $(MAKE) clean
.PHONY: $(PROJS) runtests gotests showcoverage scribetests lint vet clean
.PHONY: $(PROJS) runtests gotests showcoverage lint vet clean