Skip to content

Commit

Permalink
Limit concurrent runs to avoid failing test due to memory shortage on…
Browse files Browse the repository at this point in the history
… Cirrus CI platform
  • Loading branch information
Armin Gruner committed Aug 4, 2020
1 parent 12ebb91 commit 64bc731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psutil/tests/test_contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 64bc731

Please sign in to comment.