migra/Makefile
2019-03-03 14:49:39 +11:00

28 lines
355 B
Makefile

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