core-lightning/contrib/pyln-proto/Makefile
Rusty Russell 5b4be02ed3 pyln: add Makefile
This runs flake8 and the python tests.  Helps me, at least!

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2020-06-12 15:35:35 +02:00

11 lines
110 B
Makefile

#! /usr/bin/make
default: check-source check
check:
pytest
check-source:
flake8 --ignore=E501,E731,W503