From 3320f46b8f1b2b8fe266579718fbc05052f47e3f Mon Sep 17 00:00:00 2001 From: Lekhnath Parajuli Date: Fri, 16 May 2025 22:59:19 +0545 Subject: [PATCH 1/2] add support for parallel run Reported-by: lekhnath-parajuli-nexyom --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1b3f86994..3ae88069f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,8 +108,18 @@ members = ["examples/servers/*"] [tool.uv.sources] mcp = { workspace = true } +[tool.pytest_env] +LOGGING_DISABLED = true + [tool.pytest.ini_options] xfail_strict = true +addopts = """ + -vv + --color=yes + --capture=fd + --numprocesses 4 + --disable-warnings +""" filterwarnings = [ "error", # This should be fixed on Uvicorn's side. From 63b41f3ce383d5698fed71c795b79b68a1868c16 Mon Sep 17 00:00:00 2001 From: Lekhnath Parajuli Date: Fri, 23 May 2025 18:55:15 +0545 Subject: [PATCH 2/2] make num process auto and remove warnings Reported-by: lekhnath-parajuli-nexyom --- pyproject.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3ae88069f..5db112c0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -108,17 +108,13 @@ members = ["examples/servers/*"] [tool.uv.sources] mcp = { workspace = true } -[tool.pytest_env] -LOGGING_DISABLED = true - [tool.pytest.ini_options] +log_cli = true xfail_strict = true addopts = """ - -vv --color=yes --capture=fd - --numprocesses 4 - --disable-warnings + --numprocesses auto """ filterwarnings = [ "error",