Increase GitHub CI timeouts for the coordinator tests

This commit is contained in:
Luke Parker 2023-08-25 14:09:44 -04:00
parent ba46aa76f0
commit 3745f8b6af
No known key found for this signature in database

View file

@ -40,6 +40,6 @@ pub(crate) fn new_test() -> (Vec<(Handles, <Ristretto as Ciphersuite>::F)>, Dock
pub(crate) async fn wait_for_tributary() {
tokio::time::sleep(Duration::from_secs(20)).await;
if std::env::var("GITHUB_CI") == Ok("true".to_string()) {
tokio::time::sleep(Duration::from_secs(20)).await;
tokio::time::sleep(Duration::from_secs(40)).await;
}
}