mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 10:39:49 +01:00
da070e73b2
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
14 lines
235 B
Makefile
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'`
|