Skip to content
Snippets Groups Projects
Commit 8d05ef88 authored by Vincent Texier's avatar Vincent Texier
Browse files

[fix] fix bug in pylint on examples

if duniterpy is not installed, pylint raises E0401 error
parent 594fed92
No related branches found
No related tags found
2 merge requests!119Release 0.61.0,!90Add GraphQL GVA API support
Pipeline #10288 waiting for manual action
...@@ -22,7 +22,7 @@ mypy: ...@@ -22,7 +22,7 @@ mypy:
pylint: pylint:
poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy/ poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy/
poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 tests/ poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 tests/
poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 examples/ poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613,E0401 --enable=C0121,C0202,C0321 --jobs=0 examples/
# check format # check format
check-format: check-format:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment