committed by
Christian Decker
1 changed files with 6 additions and 3 deletions
@ -1,10 +1,13 @@ |
|||||
#! /usr/bin/make
|
#! /usr/bin/make
|
||||
|
|
||||
default: check-source check |
|
||||
|
|
||||
check: |
check: |
||||
pytest |
pytest |
||||
|
|
||||
check-source: |
check-source: check-flake8 check-mypy |
||||
|
|
||||
|
check-flake8: |
||||
flake8 --ignore=E501,E731,W503 |
flake8 --ignore=E501,E731,W503 |
||||
|
|
||||
|
# mypy . does not recurse. I have no idea why...
|
||||
|
check-mypy: |
||||
|
mypy --ignore-missing-imports `find * -name '*.py'` |
||||
|
Loading…
Reference in new issue