Streamline Debugging with Faster Issue Detection
The new execution option return_as=generator_unordered
can be set via options
to facilitate quicker issue detection in your runs. This feature allows you to identify and resolve failures without waiting for all executions to complete, enhancing the efficiency of diagnostics and debugging.
Streamline debugging with faster issue detection
Output
--
DEBUG 2024-10-24 12:48:57 Logging level set to DEBUG
DEBUG 2024-10-24 12:48:57 Created DB link: 'sqlite:///:memory:'
DEBUG 2024-10-24 12:48:57 Using backend: loky
DEBUG 2024-10-24 12:48:57 Executing 10 tasks on 2 workers (backend:loky)
DEBUG 2024-10-24 12:48:59 Encountered exception in task, propagating to main process
DEBUG 2024-10-24 12:48:59 Executed 4 of 10 tasks (40%) with return_as=generator_unordered
TestException at failfast.py:20::faulty_step "<unkown>": test error
--