By default, skip Rust tests that take over 10s in debug builds

We'll still run them in CI, but we don't need to run them locally.
This commit is contained in:
Jordan Rose
2021-03-09 16:15:36 -08:00
parent f10ff54888
commit 56afeb885c
6 changed files with 13 additions and 2 deletions

View File

@@ -255,6 +255,7 @@ fn test_basic_prekey_v3() -> Result<(), SignalProtocolError> {
}
#[test]
#[ignore = "slow to run locally"]
#[allow(clippy::eval_order_dependence)]
fn chain_jump_over_limit() -> Result<(), SignalProtocolError> {
block_on(async {
@@ -341,6 +342,7 @@ fn chain_jump_over_limit() -> Result<(), SignalProtocolError> {
}
#[test]
#[ignore = "slow to run locally"]
#[allow(clippy::eval_order_dependence)]
fn chain_jump_over_limit_with_self() -> Result<(), SignalProtocolError> {
block_on(async {