Further workaround #247

This commit is contained in:
Luke Parker 2023-01-31 10:48:19 -05:00
parent df75782e54
commit 264174644f
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -64,7 +64,7 @@ jobs:
cargo build
- name: Run Tests
run: cargo test --all-features
run: GITHUB_CI=true cargo test --all-features
fmt:
runs-on: ubuntu-latest

View file

@ -110,7 +110,9 @@ macro_rules! serai_test {
tokio::time::sleep(Duration::from_secs(1)).await;
}
// TODO: https://github.com/serai-dex/serai/247
tokio::time::sleep(Duration::from_secs(5)).await;
if std::env::var("GITHUB_CI") == Ok("true".to_string()) {
tokio::time::sleep(Duration::from_secs(60)).await;
}
command
};