Skip to content

Commit

Permalink
Make cargo-nextest more resilient (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanYuYuan authored Feb 7, 2024
1 parent 634ad71 commit 2bd4518
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .config/nextest.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# By default, retry a few times until pass the test within the specified timeout
[profile.default]
retries = 4
slow-timeout = { period = "60s", terminate-after = 2 }

# Run the following tests exclusively with longer timeout
[[profile.default.overrides]]
filter = 'test(/zenoh_session_unicast/)'
filter = """
test(=zenoh_session_unicast) |
test(=zenoh_session_multicast) |
test(=three_node_combination)
"""
threads-required = 'num-cpus'
slow-timeout = { period = "60s", terminate-after = 6 }

0 comments on commit 2bd4518

Please sign in to comment.