Skip to content

Commit

Permalink
gci: Add missing tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Sep 28, 2021
1 parent fe9949c commit 7174028
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit 7174028

Please sign in to comment.