gh-119819: Update test to skip if _multiprocessing is unavailable. (GH-120067)

This commit is contained in:
Vinay Sajip 2024-06-04 20:16:43 +01:00 committed by GitHub
parent 710cbea660
commit 109e1082ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3926,9 +3926,9 @@ def test_config_queue_handler(self):
msg = str(ctx.exception)
self.assertEqual(msg, "Unable to configure handler 'ah'")
@unittest.skipIf(support.is_wasi, "WASI does not have multiprocessing.")
def test_multiprocessing_queues(self):
# See gh-119819
import_helper.import_module('_multiprocessing') # will skip test if it's not available
cd = copy.deepcopy(self.config_queue_handler)
from multiprocessing import Queue as MQ, Manager as MM
q1 = MQ() # this can't be pickled