Skip to content

Commit

Permalink
build: formatting update.
Browse files Browse the repository at this point in the history
  • Loading branch information
radoshi committed Mar 24, 2024
1 parent 6430ee3 commit d6b3b5d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_parse_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,10 @@ 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 d6b3b5d

Please sign in to comment.