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

[ci] try pylint job with pylint from the image

Move pylint job to checks stage since it's going faster
With E0401 import disabled
parent 0a126c64
No related branches found
No related tags found
No related merge requests found
...@@ -59,10 +59,9 @@ type: ...@@ -59,10 +59,9 @@ type:
lint: lint:
extends: extends:
- .code_changes - .code_changes
stage: tests stage: checks
tags: [redshift] tags: [redshift]
script: script:
- poetry install
- make pylint - make pylint
.tests: .tests:
......
...@@ -48,6 +48,6 @@ profile = "black" ...@@ -48,6 +48,6 @@ profile = "black"
src_paths = ["duniterpy", "tests", "examples"] src_paths = ["duniterpy", "tests", "examples"]
[tool.pylint.messages_control] [tool.pylint.messages_control]
disable = "C,R0401,R0801,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613" disable = "C,E0401,R0401,R0801,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613"
enable = "C0121,C0202,C0321" enable = "C0121,C0202,C0321"
jobs = 0 jobs = 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment