From 186f438cc14e45ad9b8331e5acd9f6f2e7abfcce Mon Sep 17 00:00:00 2001 From: Greyson LaLonde Date: Wed, 11 Mar 2026 10:11:39 -0400 Subject: [PATCH] fix: reduce concurrent storage test workers to avoid xdist resource starvation --- lib/crewai/tests/memory/test_concurrent_storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/crewai/tests/memory/test_concurrent_storage.py b/lib/crewai/tests/memory/test_concurrent_storage.py index f31264847..ea924e0d3 100644 --- a/lib/crewai/tests/memory/test_concurrent_storage.py +++ b/lib/crewai/tests/memory/test_concurrent_storage.py @@ -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):