From 98f475a0d2132ca8e0cc5d8a8ed7b1c741ed665c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9renger=20Berthoul?= Date: Tue, 14 Jan 2025 16:33:20 +0100 Subject: [PATCH] change default scheduler from sequential to dynamic --- pytest_parallel/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_parallel/plugin.py b/pytest_parallel/plugin.py index 2dca271..921a65f 100644 --- a/pytest_parallel/plugin.py +++ b/pytest_parallel/plugin.py @@ -20,7 +20,7 @@ def pytest_addoption(parser): '--scheduler', dest='scheduler', choices=['sequential', 'static', 'dynamic', 'slurm', 'shell'], - default='sequential', + default='dynamic', help='Method used by pytest_parallel to schedule tests', )