mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-27 03:51:16 -05:00
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:
parent
f91d0b13e8
commit
83ddca7690
1 changed files with 3 additions and 1 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue