Skip to content

Commit

Permalink
Remove deps from test Make dependencies
Browse files Browse the repository at this point in the history
With the deps as phony targets npm and pip run every time. It's
better to keep the friction for running the test suite low. Rebuild
isn't often necessary.
  • Loading branch information
tilgovi committed Mar 23, 2015
1 parent 2503035 commit b920bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ clean:
dev:
@gunicorn --reload --paste conf/development.ini

test: deps
test:
@echo -n "Checking to see if elasticsearch is running..."
$(eval es := $(shell wget --quiet --output-document - http://localhost:9200))
@if [ -n '${es}' ] ; then echo "yes." ; else echo "no!"; exit 1; fi
Expand Down

0 comments on commit b920bbd

Please sign in to comment.