mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2025-12-24 00:01:03 -05:00
14 lines
479 B
TOML
14 lines
479 B
TOML
[profile.default]
|
|
retries = { backoff = "exponential", count = 3, delay = "1s", jitter = true }
|
|
# kill the slow tests if they still aren't up after 180s
|
|
slow-timeout = { period = "60s", terminate-after = 3 }
|
|
|
|
[profile.ci]
|
|
retries = { backoff = "exponential", count = 4, delay = "1s", jitter = true }
|
|
# kill the slow tests if they still aren't up after 180s
|
|
slow-timeout = { period = "60s", terminate-after = 3 }
|
|
|
|
[profile.ci.junit]
|
|
path = "junit.xml"
|
|
store-success-output = true
|