Skip to content

Commit ded4e2d

Browse files
committed
skip flaky tests
1 parent ca76cb7 commit ded4e2d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Lib/test/_test_multiprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1459,7 +1459,7 @@ def _acquire_release(lock, timeout, l=None, n=1):
14591459
for _ in range(n):
14601460
lock.release()
14611461

1462-
@unittest.skipIf(sys.platform == 'darwin', "TODO: RUSTPYTHON; flaky on darwin")
1462+
@unittest.skip("TODO: RUSTPYTHON; flaky timeout")
14631463
def test_repr_rlock(self):
14641464
if self.TYPE != 'processes':
14651465
self.skipTest('test not appropriate for {}'.format(self.TYPE))

Lib/test/test_importlib/test_threaded_import.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,7 @@ def check_parallel_module_init(self, mock_os):
136136
if verbose:
137137
print("OK.")
138138

139-
# TODO: RUSTPYTHON
140-
@unittest.expectedFailure
139+
@unittest.skip("TODO: RUSTPYTHON; flaky")
141140
def test_parallel_module_init(self):
142141
self.check_parallel_module_init()
143142

0 commit comments

Comments
 (0)