diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d75401df4d065534ccc70ce03219bf2aa8f76cc6..e155c364c070e3acfb4e9b5cefe9d9e92752fe34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -58,10 +58,9 @@ type: lint: extends: - .code_changes - stage: tests + stage: checks tags: [redshift] script: - - poetry install - make pylint .tests: diff --git a/pyproject.toml b/pyproject.toml index f88ed185edf2f0e6c8bf64f47b41674630d81dde..926c400961ab46761f6a4c84f31a963ce7b33b1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,6 @@ profile = "black" src_paths = ["duniterpy", "tests", "examples"] [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" jobs = 0