Skip to content

Commit

Permalink
Add a Pylint skip to unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Mar 2, 2024
1 parent 377a5f5 commit dba3685
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/darker/tests/test_black_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def make_mock_gen_python_files_black_21_7b1_dev8():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down Expand Up @@ -243,6 +244,7 @@ def make_mock_gen_python_files_black_21_7b1_dev9():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down Expand Up @@ -277,6 +279,7 @@ def make_mock_gen_python_files_black_22_10_1_dev19():
"""
calls = Mock()

# pylint: disable=unused-argument
def gen_python_files(
paths: Iterable[Path],
root: Path,
Expand Down

0 comments on commit dba3685

Please sign in to comment.