diff --git a/.config/nextest.toml b/.config/nextest.toml index 37b7dfcea0..4c43d16264 100644 --- a/.config/nextest.toml +++ b/.config/nextest.toml @@ -1,16 +1,16 @@ -# By default, retry a few times until pass the test within the specified timeout -[profile.default] -retries = 1 -slow-timeout = { period = "60s", terminate-after = 2 } - -# Run the following tests exclusively with longer timeout -[[profile.default.overrides]] -filter = """ -test(=zenoh_session_unicast) | -test(=zenoh_session_multicast) | -test(=transport_tcp_intermittent) | -test(=transport_tcp_intermittent_for_lowlatency_transport) | -test(=three_node_combination) -""" -threads-required = 'num-cpus' -slow-timeout = { period = "60s", terminate-after = 6 } +# # By default, retry a few times until pass the test within the specified timeout +# [profile.default] +# retries = 1 +# slow-timeout = { period = "60s", terminate-after = 2 } +# +# # Run the following tests exclusively with longer timeout +# [[profile.default.overrides]] +# filter = """ +# test(=zenoh_session_unicast) | +# test(=zenoh_session_multicast) | +# test(=transport_tcp_intermittent) | +# test(=transport_tcp_intermittent_for_lowlatency_transport) | +# test(=three_node_combination) +# """ +# threads-required = 'num-cpus' +# slow-timeout = { period = "60s", terminate-after = 6 } diff --git a/zenoh/tests/session.rs b/zenoh/tests/session.rs index f5061f7fd7..389878a94a 100644 --- a/zenoh/tests/session.rs +++ b/zenoh/tests/session.rs @@ -18,7 +18,7 @@ use zenoh::prelude::r#async::*; use zenoh::runtime::{Runtime, RuntimeBuilder}; use zenoh_core::ztimeout; -const TIMEOUT: Duration = Duration::from_secs(60); +const TIMEOUT: Duration = Duration::from_secs(20); const SLEEP: Duration = Duration::from_secs(1); const MSG_COUNT: usize = 1_000;