From 3139955824e085ac17b10da2bb0be2233cb70f3c Mon Sep 17 00:00:00 2001 From: Jessica Castelino Date: Tue, 30 Aug 2022 20:16:00 +0000 Subject: [PATCH] Fix: Pylint 2.15 breaks zuul for update repo Pylint 2.15 came out on Aug 26th which added a new check for missing-timeout. https://pylint.pycqa.org/en/latest/whatsnew/2/2.15/index.html This causes zuul jobs to fails and the submissions in the update repo are blocked as a result. This commit disables the check to fix the issue. Closes-Bug: 1988226 Signed-off-by: Jessica Castelino Change-Id: Ic0f8ac3c08eba3f70e117a9066dcda9920753530 --- sw-patch/cgcs-patch/pylint.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw-patch/cgcs-patch/pylint.rc b/sw-patch/cgcs-patch/pylint.rc index 34af0482..ee3cae4a 100644 --- a/sw-patch/cgcs-patch/pylint.rc +++ b/sw-patch/cgcs-patch/pylint.rc @@ -94,7 +94,7 @@ disable= C0103,C0114,C0115,C0116,C0201,C0206,C0209,C2801, R0205,R0402,R0801,R0902,R0903,R0904,R0911, R0912,R0913,R0914,R0915,R1702,R1705,R1710,R1714, R1715,R1722,R1724,R1725,R1732,R1735, - W0107,W0602,W0603,W0703,W0707,W1505,W1514 + W0107,W0602,W0603,W0703,W0707,W1505,W1514,W3101 [REPORTS]