From ed2ac1a68a26557fd9fade1c6c16a7a02ca88a51 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Sat, 14 Dec 2024 12:01:45 +0100 Subject: [PATCH] Add xdist group to multiprocess tests --- tests/supervisors/test_multiprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/supervisors/test_multiprocess.py b/tests/supervisors/test_multiprocess.py index e1f594efe..4b2ee1f46 100644 --- a/tests/supervisors/test_multiprocess.py +++ b/tests/supervisors/test_multiprocess.py @@ -15,6 +15,8 @@ from uvicorn.supervisors import Multiprocess from uvicorn.supervisors.multiprocess import Process +pytestmark = pytest.mark.xdist_group(name="multiprocess") + def new_console_in_windows(test_function: Callable[[], Any]) -> Callable[[], Any]: # pragma: no cover if os.name != "nt":