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 <jessica.castelino@windriver.com>
Change-Id: Ic0f8ac3c08eba3f70e117a9066dcda9920753530
This commit is contained in:
Jessica Castelino 2022-08-30 20:16:00 +00:00
parent 1c402ba0ea
commit 3139955824
1 changed files with 1 additions and 1 deletions

View File

@ -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]