migra/Makefile
2018-10-29 08:09:55 +11:00

27 lines
331 B
Makefile

.PHONY: docs
# test commands and arguments
tcommand = py.test -x
tmessy = -svv
targs = --cov-report term-missing --cov migra
test:
$(tcommand) $(targs) tests
stest:
$(tcommand) $(tmessy) $(targs) tests
gitclean:
git clean -fXd
clean:
find . -name \*.pyc -delete
rm -rf .cache
fmt:
isort -rc .
black .
lint:
flake8 .