Don't run tests by default when calling make

Making it explicit via `make test` makes more sense to me.
This commit is contained in:
Dan Callahan 2014-04-16 14:34:15 -05:00
parent 536d3cab85
commit 55cc6e1f3b

View File

@ -4,7 +4,7 @@ ENV = ./local
TOOLS := $(addprefix $(ENV)/bin/,flake8 nosetests) TOOLS := $(addprefix $(ENV)/bin/,flake8 nosetests)
.PHONY: all .PHONY: all
all: build test all: build
.PHONY: build .PHONY: build
build: | $(ENV) build: | $(ENV)