You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
235 B
13 lines
235 B
#! /usr/bin/make
|
|
|
|
check:
|
|
pytest
|
|
|
|
check-source: check-flake8 check-mypy
|
|
|
|
check-flake8:
|
|
flake8 --ignore=E501,E731,W503
|
|
|
|
# mypy . does not recurse. I have no idea why...
|
|
check-mypy:
|
|
mypy --ignore-missing-imports `find * -name '*.py'`
|
|
|