We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f68ecf commit 4904b65Copy full SHA for 4904b65
1 file changed
libkirk/scheduler.py
@@ -476,7 +476,7 @@ async def _run_suite(self, suite: Suite) -> None:
476
start_t = 0.0
477
timed_out = False
478
exec_times = []
479
- tests_results = []
+ tests_results: List[TestResults] = []
480
tests_left = list(suite.tests)
481
reboot_event = asyncio.Event()
482
@@ -505,6 +505,7 @@ async def _run_suite(self, suite: Suite) -> None:
505
reboot_event.set()
506
finally:
507
exec_times.append(time.time() - start_t)
508
+ # pyrefly: ignore[bad-argument-type]
509
tests_results.extend(self._scheduler.results)
510
511
# tests_left array will be populated when SUT is
0 commit comments