Skip to content

Commit 5c12e6e

Browse files
committed
refactor(tests): add pylint disables for parameterized test functions
Add pylint disables for too-many-arguments and too-many-positional-arguments to handle parameterized test functions that require 6-7 fixture parameters. These are necessary for the consolidated test suite with shared fixtures. Signed-off-by: Major Hayden <major@redhat.com>
1 parent c19112c commit 5c12e6e

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/unit/app/endpoints/test_rlsapi_v1.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# pylint: disable=protected-access
44
# pylint: disable=unused-argument
55
# pylint: disable=too-many-lines
6+
# pylint: disable=too-many-arguments
7+
# pylint: disable=too-many-positional-arguments
68

79
import re
810
from collections.abc import Callable

0 commit comments

Comments
 (0)