Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 6, 2024
1 parent 4a1f432 commit 95fa59f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/_pytest/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,9 @@ def collect() -> List[Union[Item, Collector]]:

return list(collector.collect())

call = CallInfo.from_call(collect, "collect", reraise=(KeyboardInterrupt, SystemExit))
call = CallInfo.from_call(
collect, "collect", reraise=(KeyboardInterrupt, SystemExit)
)
longrepr: Union[None, Tuple[str, int, str], str, TerminalRepr] = None
if not call.excinfo:
outcome: Literal["passed", "skipped", "failed"] = "passed"
Expand Down

0 comments on commit 95fa59f

Please sign in to comment.