]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
iotests/297: pylint: ignore too many statements
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Fri, 29 Jan 2021 16:13:23 +0000 (19:13 +0300)
committerKevin Wolf <kwolf@redhat.com>
Tue, 2 Feb 2021 12:23:47 +0000 (13:23 +0100)
Ignore two complains, which now lead to 297 failure on testenv.py and
testrunner.py.

Fixes: 2e5a2f57db481f18fcf70be2a36b1417370b8476
Fixes: d74c754c924ca34e90b7c96ce2f5609d82c0e628
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20210129161323.615027-1-vsementsov@virtuozzo.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
tests/qemu-iotests/pylintrc

index cd3702e23c39b513c8293dceeb2d4a1c7ef0ff57..7a6c0a947400ef746ae2ad568f45cad8db056ecf 100644 (file)
@@ -21,6 +21,8 @@ disable=invalid-name,
         unsubscriptable-object,
         # These are temporary, and should be removed:
         missing-docstring,
+        too-many-return-statements,
+        too-many-statements
 
 [FORMAT]