From: Tom Krizek Date: Thu, 10 Aug 2023 14:53:10 +0000 (+0200) Subject: Silence pylint's refactoring suggestions for system_test_dir() X-Git-Tag: v9.19.17~44^2~2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=83ddca76902bb54735528fa365e4b6c323b640fe;p=thirdparty%2Fbind9.git Silence pylint's refactoring suggestions for system_test_dir() While it'd be fairly easy to split the function up into smaller ones, the readability wouldn't be improved in this case. Silence the suggestions instead. --- diff --git a/bin/tests/system/conftest.py b/bin/tests/system/conftest.py index 63b992eb40d..fcdc379c47c 100644 --- a/bin/tests/system/conftest.py +++ b/bin/tests/system/conftest.py @@ -378,7 +378,9 @@ else: return logging.getLogger(f"{system_test_name}.{request.node.name}") @pytest.fixture(scope="module") - def system_test_dir(request, env, system_test_name, mlogger): + def system_test_dir( + request, env, system_test_name, mlogger + ): # pylint: disable=too-many-statements,too-many-locals """ Temporary directory for executing the test.