From 5b4be02ed3d97d287edec234714937bdf71d71e2 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 18 May 2020 16:41:50 +0930 Subject: [PATCH] pyln: add Makefile This runs flake8 and the python tests. Helps me, at least! Signed-off-by: Rusty Russell --- contrib/pyln-proto/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 contrib/pyln-proto/Makefile diff --git a/contrib/pyln-proto/Makefile b/contrib/pyln-proto/Makefile new file mode 100644 index 000000000..6d2579aca --- /dev/null +++ b/contrib/pyln-proto/Makefile @@ -0,0 +1,10 @@ +#! /usr/bin/make + +default: check-source check + +check: + pytest + +check-source: + flake8 --ignore=E501,E731,W503 +