From 64bc7312ab0d4535e6b2d88d5c3b7f71bf0e0302 Mon Sep 17 00:00:00 2001 From: Armin Gruner Date: Tue, 4 Aug 2020 21:50:29 +0200 Subject: [PATCH] Limit concurrent runs to avoid failing test due to memory shortage on Cirrus CI platform --- psutil/tests/test_contracts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psutil/tests/test_contracts.py b/psutil/tests/test_contracts.py index 2d9e5917e6..a46c2c8243 100755 --- a/psutil/tests/test_contracts.py +++ b/psutil/tests/test_contracts.py @@ -380,7 +380,7 @@ class TestFetchAllProcesses(PsutilTestCase): """ def setUp(self): - self.pool = multiprocessing.Pool() + self.pool = multiprocessing.Pool(10) def tearDown(self): self.pool.terminate()