Add a test target that DWIM so that 'make test' doesn't silently fail.

This commit is contained in:
Peter Lobsinger 2014-05-16 14:45:16 -07:00
Родитель 24c6dc4142
Коммит 66e9312199
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -4,11 +4,15 @@
MAKEFLAGS = -s
all: build unit_test queryservice_test integration_test
.PHONY: all build test clean unit_test unit_test_cover unit_test_race queryservice_test integration_test bson
all: build test
build:
go install ./go/...
test: unit_test queryservice_test integration_test
clean:
go clean -i ./go/...