mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
27 lines
1009 B
TOML
27 lines
1009 B
TOML
[profile.default]
|
|
retries = { backoff = "exponential", count = 2, delay = "2s", jitter = true }
|
|
slow-timeout = { period = "30s", terminate-after = 4 }
|
|
|
|
[[profile.default.overrides]]
|
|
filter = "test(general_state_tests)"
|
|
slow-timeout = { period = "1m", terminate-after = 10 }
|
|
|
|
[[profile.default.overrides]]
|
|
filter = "test(eest_fixtures)"
|
|
slow-timeout = { period = "2m", terminate-after = 10 }
|
|
|
|
# E2E tests using the testsuite framework from crates/e2e-test-utils
|
|
# These tests are located in tests/e2e-testsuite/ directories across various crates
|
|
[[profile.default.overrides]]
|
|
filter = "binary(e2e_testsuite)"
|
|
slow-timeout = { period = "2m", terminate-after = 3 }
|
|
|
|
[[profile.default.overrides]]
|
|
filter = "package(reth-era) and binary(it)"
|
|
slow-timeout = { period = "2m", terminate-after = 10 }
|
|
|
|
# Allow slower ethereum node e2e tests (p2p + blobs) to run up to 5 minutes.
|
|
[[profile.default.overrides]]
|
|
filter = "package(reth-node-ethereum) and binary(e2e)"
|
|
slow-timeout = { period = "1m", terminate-after = 5 }
|