pyln: add Makefile

This runs flake8 and the python tests.  Helps me, at least!

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2020-05-18 16:41:50 +09:30 committed by Christian Decker
parent 9e0ef45048
commit 5b4be02ed3
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#! /usr/bin/make
default: check-source check
check:
pytest
check-source:
flake8 --ignore=E501,E731,W503