core-lightning/contrib/pyln-proto/Makefile
Rusty Russell da070e73b2 pyln.proto.message.*: Add Makefile to do mypy checks.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2020-06-12 15:35:35 +02:00

14 lines
235 B
Makefile

#! /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'`