Update runner.py

This commit is contained in:
Anita Hammer 2024-04-06 22:21:46 +01:00 committed by GitHub
parent 0be9c399ab
commit 4a1f432d44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ def pytest_make_collect_report(collector: Collector) -> CollectReport:
return list(collector.collect())
call = CallInfo.from_call(collect, "collect", reraise=(BaseException, 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"