gci: Add missing tooling

This commit is contained in:
Christian Decker 2021-09-22 18:06:50 +02:00
parent fe9949ce0b
commit 71740283e4
2 changed files with 4 additions and 1 deletions

View file

@ -29,6 +29,8 @@ pip3 install --user -U -r requirements.txt --use-feature=in-tree-build
# keeps breaking the rerunfailures plugin).
pip3 install --user -U \
blinker \
flake8 \
make \
pytest-sentry \
pytest-test-groups==1.0.3 \
pytest-custom-exit-code==0.3.0 \

View file

@ -474,7 +474,8 @@ check-python-flake8:
@# E501 line too long (N > 79 characters)
@# E731 do not assign a lambda expression, use a def
@# W503: line break before binary operator
@flake8 --ignore=E501,E731,W503 --exclude $(shell echo ${PYTHON_GENERATED} | sed 's/ \+/,/g') ${PYSRC}
@# E741: ambiguous variable name
@flake8 --ignore=E501,E731,E741,W503 --exclude $(shell echo ${PYTHON_GENERATED} | sed 's/ \+/,/g') ${PYSRC}
check-pytest-pyln-proto:
PATH=$(PYLN_PATH) PYTHONPATH=$(PYTHONPATH) $(PYTEST) contrib/pyln-proto/tests/