Files
pre-commit/Makefile
2014-04-12 15:56:18 -07:00

18 lines
192 B
Makefile

.PHONY: all
all: venv test
.PHONY: venv
venv:
tox -e venv
.PHONY: tests test
tests: test
test:
tox
.PHONY: clean
clean:
find . -iname '*.pyc' | xargs rm -f
rm -rf .tox
rm -rf ./venv-*