mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-20 13:54:36 +01:00
gci: Add missing tooling
This commit is contained in:
parent
fe9949ce0b
commit
71740283e4
2 changed files with 4 additions and 1 deletions
2
.github/scripts/build.sh
vendored
2
.github/scripts/build.sh
vendored
|
@ -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 \
|
||||
|
|
3
Makefile
3
Makefile
|
@ -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/
|
||||
|
|
Loading…
Add table
Reference in a new issue