Compare commits

..

2 Commits

Author SHA1 Message Date
Omar Abdulla 697a4e7ae3 Set a default workdir for debug profile 2025-10-20 13:20:05 +03:00
Omar Abdulla 19f006706f Add support for profiles 2025-10-20 12:58:08 +03:00
3 changed files with 2 additions and 3 deletions
@@ -205,7 +205,6 @@ pub async fn handle_differential_tests(
?remaining_tasks,
"Remaining Tests"
);
drop(remaining_tasks);
tokio::time::sleep(Duration::from_secs(10)).await
}
});
@@ -218,7 +218,7 @@ impl SubstrateNode {
}
},
ProcessReadinessWaitBehavior::TimeBoundedWaitFunction {
max_wait_duration: Duration::from_secs(90),
max_wait_duration: Duration::from_secs(30),
check_function: Box::new(|_, stderr_line| match stderr_line {
Some(line) => Ok(line.contains(Self::SUBSTRATE_READY_MARKER)),
None => Ok(false),