mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-17 19:03:42 +01:00
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
|
||
|
|