From b51031413524894c68e01d7b5e13bdaf32cf6245 Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 19 Apr 2023 15:40:57 +0200 Subject: [PATCH] Fix CI: Removed R0201 This has been moved to optional and does not need to be disabled by us. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 22751b0..3f6a768 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ pylint: stage: lint&test script: - pip install -r dev_requirements.txt - - pylint -d C0301,W0614,R0201,C0114,C0115,C0116,similarities,W0702,W0702,R0913,R0902,R0914,R1732 src/main/python/ddadevops/*.py + - pylint -d C0301,W0614,C0114,C0115,C0116,similarities,W0702,W0702,R0913,R0902,R0914,R1732 src/main/python/ddadevops/*.py pytest: stage: lint&test