pantalaimon/Makefile

21 lines
416 B
Makefile
Raw Normal View History

2019-04-10 06:14:00 -04:00
test:
python3 -m pytest
python3 -m pytest --black pantalaimon
2019-04-10 06:14:00 -04:00
python3 -m pytest --flake8 pantalaimon
python3 -m pytest --isort
coverage:
python3 -m pytest --cov=pantalaimon --cov-report term-missing
typecheck:
mypy --ignore-missing-imports pantalaimon
run-local:
python -m pantalaimon.main --log-level debug --config ./contrib/pantalaimon.conf
2019-05-14 15:50:48 -04:00
isort:
isort -y -p pantalaimon
format:
black pantalaimon/