From 8bd76b9f055090dcf8e1a49f7e15e764d46757d9 Mon Sep 17 00:00:00 2001 From: Praveenk8051 Date: Sun, 9 Mar 2025 14:15:44 +0100 Subject: [PATCH] chore: update pytest configuration to enable parallel test execution --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 631ad15..14de7ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,7 +87,7 @@ build-backend = "poetry.core.masonry.api" [tool.pytest.ini_options] -addopts = "--durations=5 -m 'not slow'" +addopts = "--durations=5 -m 'not slow' -n auto" asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function" markers = "slow: marks tests as slow"