giftwrap/Makefile

12 lines
140 B
Makefile

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