-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextest.toml
More file actions
41 lines (33 loc) · 1.49 KB
/
nextest.toml
File metadata and controls
41 lines (33 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[profile.default]
# Keep libtest parallelism available by default while isolating only known noisy tests.
retries = 3
test-threads = 15
[[profile.default.overrides]]
filter = 'test(test_scenario_08_subscription_reconnect)'
slow-timeout = { period = "60s", terminate-after = 2 }
[[profile.default.overrides]]
filter = 'test(test_setup_complete_environment)'
threads-required = 15
[[profile.default.overrides]]
filter = 'test(idle_autocommit_transaction_checks_add_no_extra_allocations)'
# This perf/allocation regression is stable in isolation but noisy under full workspace contention.
threads-required = 15
[[profile.default.overrides]]
filter = 'test(autocommit_read_write_latency_regression_stays_within_five_percent)'
# This perf regression compares two nearly identical code paths and should run in isolation.
threads-required = 15
[[profile.default.overrides]]
filter = 'test(e2e_perf_sequential_insert_100)'
# This PG perf check is stable in isolation but noisy under full-suite contention.
threads-required = 15
[[profile.default.overrides]]
filter = 'test(e2e_perf_cross_verify_latency)'
# This latency check is sensitive to concurrent heavy tests and should run in isolation.
threads-required = 15
[[profile.default.overrides]]
filter = 'test(e2e_perf_local_memory_stays_bounded_under_batch_insert_and_scan)'
# This memory-bound perf check is meaningful only without competing suite load.
threads-required = 15
# [[profile.default.overrides]]
# filter = 'package(kalamdb-server)'
# threads-required = 15