Skip to content

Commit 9cd5599

Browse files
committed
Disable pylint false-positives for pytest
Context: Issue: pytest-dev/pytest#7473 PR that was just merged: pytest-dev/pytest#7476 Opened issue to get rid of this once `pytest` is updated: #235
1 parent e5c1c96 commit 9cd5599

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

tests/integration/test_core_generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
# pylint: disable=missing-module-docstring
1818
# pylint: disable=missing-function-docstring
19+
# pylint: disable=not-callable
1920

2021
from typing import Any
2122

tests/integration/test_linux_generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# pylint: disable=missing-module-docstring
1818
# pylint: disable=missing-function-docstring
1919
# pylint: disable=line-too-long
20+
# pylint: disable=not-callable
2021

2122
from typing import Any
2223

tests/integration/test_spl_generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# pylint: disable=missing-module-docstring
1818
# pylint: disable=missing-function-docstring
1919
# pylint: disable=line-too-long
20+
# pylint: disable=not-callable
2021

2122
from typing import Any
2223

tests/integration/test_zfs_generic.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# pylint: disable=missing-module-docstring
1818
# pylint: disable=missing-function-docstring
1919
# pylint: disable=line-too-long
20+
# pylint: disable=not-callable
2021

2122
from typing import Any
2223

tests/unit/test_parser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#
1616

1717
# pylint: disable=missing-docstring
18+
# pylint: disable=not-callable
1819

1920
from typing import List, Tuple
2021

0 commit comments

Comments
 (0)