You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At this moment there's no way to programmatically stop a test run in process with replay, which simply loops until a failure or all configured cases pass
It would be nice to be able to interrupt this loop at will so in a setup with multiple tests started at the same time (not using fork feature but rather parallelized using rayon for example) following scenarios could be achieved:
fail fast: when one of these test fails then the other tests are interrupted
timeout (not using rusty fork / fork timeout feature): interrupt all running tests when timer (started outside tests) expires
The text was updated successfully, but these errors were encountered:
At this moment there's no way to programmatically stop a test run in process with replay, which simply loops until a failure or all configured cases pass
proptest/proptest/src/test_runner/runner.rs
Line 609 in 24412f5
It would be nice to be able to interrupt this loop at will so in a setup with multiple tests started at the same time (not using fork feature but rather parallelized using rayon for example) following scenarios could be achieved:
The text was updated successfully, but these errors were encountered: