Skip to content

Commit

Permalink
build: fixing with ruff check .
Browse files Browse the repository at this point in the history
  • Loading branch information
radoshi committed Mar 24, 2024
1 parent 5f332b9 commit 6430ee3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_parse_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def test_ignore_patterns(args: List[str], ignore_patterns: List[str]):
([".", "--lf", "--nf", "-vv"], ["--lf", "--nf", "-vv"]),
([".", "--runner", "tox", "--lf", "--nf", "-vv"], ["--lf", "--nf", "-vv"]),
([".", "--lf", "--nf", "-vv", "--runner", "tox"], ["--lf", "--nf", "-vv"]),
([".", "--ignore", "tests/test_watcher.py"], ["--ignore", "tests/test_watcher.py"]),
([".",
"--ignore", "tests/test_watcher.py"], ["--ignore", "tests/test_watcher.py"]),
],
)
def test_runner_args(args: List[str], runner_args: List[str]):
Expand Down

0 comments on commit 6430ee3

Please sign in to comment.