giftwrap/Makefile
2014-06-02 11:45:27 -07:00

12 lines
140 B
Makefile

all: test
deps:
@echo "--> Installing dependencies"
@pip install tox
test: deps
@echo "--> Running tests"
@tox
.PHONY: all deps test