We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee42934 commit f25a8deCopy full SHA for f25a8de
2 files changed
Lib/test/test_multiprocessing.py
@@ -757,7 +757,13 @@ def test_notify_all(self):
757
cond.release()
758
759
# check they have all woken
760
- time.sleep(DELTA)
+ for i in range(10):
761
+ try:
762
+ if get_value(woken) == 6:
763
+ break
764
+ except NotImplementedError:
765
766
+ time.sleep(DELTA)
767
self.assertReturnsIfImplemented(6, get_value, woken)
768
769
# check state is not mucked up
Misc/NEWS
@@ -269,6 +269,8 @@ Extensions
269
Tests
270
-----
271
272
+- Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
273
+
274
- Fix possible "file already exists" error when running the tests in parallel.
275
276
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
0 commit comments