mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-23 03:59:22 +00:00
Further workaround #247
This commit is contained in:
parent
df75782e54
commit
264174644f
2 changed files with 4 additions and 2 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -64,7 +64,7 @@ jobs:
|
||||||
cargo build
|
cargo build
|
||||||
|
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: cargo test --all-features
|
run: GITHUB_CI=true cargo test --all-features
|
||||||
|
|
||||||
fmt:
|
fmt:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -110,7 +110,9 @@ macro_rules! serai_test {
|
||||||
tokio::time::sleep(Duration::from_secs(1)).await;
|
tokio::time::sleep(Duration::from_secs(1)).await;
|
||||||
}
|
}
|
||||||
// TODO: https://github.com/serai-dex/serai/247
|
// 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
|
command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue