Skip to content
Snippets Groups Projects
Commit 4f6394fa authored by Hugo Hörnquist's avatar Hugo Hörnquist
Browse files

Makefile: break each check into own rule.

parent 9ab7da31
No related branches found
No related tags found
No related merge requests found
......@@ -10,10 +10,14 @@ OUTPUT_FLAGS = --path-base /code/muppet-strings/output \
output:
python -m muppet $(OUTPUT_FLAGS)
check:
check_style:
flake8 muppet
check_type:
mypy -p muppet
check: check_style check_type
# TODO only require coverage if `python -m pytest -VV | grep pytest-cov` return true
PYTEST_FLAGS = --cov=muppet --cov-branch --cov-report=html
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment