mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
5b4be02ed3
This runs flake8 and the python tests. Helps me, at least! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
11 lines
110 B
Makefile
11 lines
110 B
Makefile
#! /usr/bin/make
|
|
|
|
default: check-source check
|
|
|
|
check:
|
|
pytest
|
|
|
|
check-source:
|
|
flake8 --ignore=E501,E731,W503
|
|
|