File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -757,7 +757,13 @@ def test_notify_all(self):
757
757
cond .release ()
758
758
759
759
# check they have all woken
760
- time .sleep (DELTA )
760
+ for i in range (10 ):
761
+ try :
762
+ if get_value (woken ) == 6 :
763
+ break
764
+ except NotImplementedError :
765
+ break
766
+ time .sleep (DELTA )
761
767
self .assertReturnsIfImplemented (6 , get_value , woken )
762
768
763
769
# check state is not mucked up
Original file line number Diff line number Diff line change @@ -269,6 +269,8 @@ Extensions
269
269
Tests
270
270
-----
271
271
272
+ - Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
273
+
272
274
- Fix possible "file already exists" error when running the tests in parallel.
273
275
274
276
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
You can’t perform that action at this time.
0 commit comments