fix: reduce concurrent storage test workers to avoid xdist resource starvation

This commit is contained in:
Greyson LaLonde
2026-03-11 10:11:39 -04:00
parent e0dc25c757
commit 186f438cc1

View File

@@ -141,8 +141,8 @@ def _chromadb_worker(persist_dir: str, worker_id: int, result_dir: str):
# Tests
# ---------------------------------------------------------------------------
N_WORKERS = 6
N_RECORDS = 20
N_WORKERS = 3
N_RECORDS = 10
def _run_workers(target, args_fn, n_workers=N_WORKERS, timeout=120):