Skip to content

Commit 83a080b

Browse files
Disables selected pylint warnings in unit tests
Suppresses multiple pylint warnings to reduce noise and improve test readability. Focuses on disabling warnings for argument counts, unused variables, and redefinitions, which are common in test setups.
1 parent 2bdf891 commit 83a080b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

services/web/server/tests/unit/with_dbs/04/test_fogbugz_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# pylint: disable=redefined-outer-name
2+
# pylint: disable=unused-argument
3+
# pylint: disable=unused-variable
4+
# pylint: disable=too-many-arguments
5+
# pylint: disable=too-many-statements
6+
17
from collections.abc import Iterator
28

39
import httpx

0 commit comments

Comments
 (0)