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.
This commit is contained in:
Tom Krizek
2023-08-21 15:54:40 +02:00
parent f91d0b13e8
commit 83ddca7690
+3 -1
View File
@@ -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.