Skip to content
Snippets Groups Projects
Commit f8ed606f authored by Moul's avatar Moul
Browse files

[ci] #118: Disable E0401 pylint rule to override the dependencies import issue

parent a7b4d2d2
No related branches found
No related tags found
No related merge requests found
Pipeline #8082 failed
...@@ -20,9 +20,9 @@ mypy: ...@@ -20,9 +20,9 @@ mypy:
# check code errors # check code errors
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=E0401,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=E0401,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=E0401,C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --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.
Finish editing this message first!
Please register or to comment