From ccecb6ac16f6db66e2c0a702cb13f2ac08187794 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sun, 7 Jan 2024 01:40:01 +0100 Subject: [PATCH] don't use a process pool if on CI --- psutil/tests/test_process_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psutil/tests/test_process_all.py b/psutil/tests/test_process_all.py index e367a8251..cf7f11206 100755 --- a/psutil/tests/test_process_all.py +++ b/psutil/tests/test_process_all.py @@ -41,7 +41,7 @@ from psutil.tests import serialrun -USE_PROC_POOL = True +USE_PROC_POOL = not CI_TESTING def proc_info(pid):