From: Vladimir Sementsov-Ogievskiy Date: Tue, 30 Apr 2024 09:08:06 +0000 (+0300) Subject: iotests/pylintrc: allow up to 10 similar lines X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a149401048481247bcbaf6035a7a1308974fb464;p=qemu.git iotests/pylintrc: allow up to 10 similar lines We want to have similar QMP objects in different tests. Reworking these objects to make common parts by calling some helper functions doesn't seem good. It's a lot more comfortable to see the whole QAPI request in one place. So, let's increase the limit, to unblock further commit "iotests: add backup-discard-source" Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Vladimir Sementsov-Ogievskiy --- diff --git a/tests/qemu-iotests/pylintrc b/tests/qemu-iotests/pylintrc index de2e0c2781..05b75ee59b 100644 --- a/tests/qemu-iotests/pylintrc +++ b/tests/qemu-iotests/pylintrc @@ -55,4 +55,4 @@ max-line-length=79 [SIMILARITIES] -min-similarity-lines=6 +min-similarity-lines=10