diff --git a/Makefile b/Makefile index f78376fbdc3010b7ec3094f5acdf53d32217bf35..22f271c95a09721052482ffb61648c6762273a9a 100644 --- a/Makefile +++ b/Makefile @@ -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