We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d52c02 commit a61a512Copy full SHA for a61a512
nextest-runner/src/runner.rs
@@ -291,7 +291,9 @@ impl<'a> TestRunnerInner<'a> {
291
// The test succeeded.
292
run_statuses.push(run_status);
293
break;
294
- } else if attempt < total_attempts {
+ } else if attempt < total_attempts
295
+ && !canceled_ref.load(Ordering::Acquire)
296
+ {
297
// Retry this test: send a retry event, then retry the loop.
298
let _ = this_run_sender.send(InternalTestEvent::Retry {
299
test_instance,
0 commit comments