mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
20 lines
847 B
Python
Vendored
20 lines
847 B
Python
Vendored
import unittest
|
|
from test._test_multiprocessing import install_tests_in_module_dict
|
|
|
|
install_tests_in_module_dict(globals(), 'spawn', only_type="processes")
|
|
|
|
import os, sys # TODO: RUSTPYTHON
|
|
class WithProcessesTestCondition(WithProcessesTestCondition): # TODO: RUSTPYTHON
|
|
@unittest.skipIf(sys.platform == 'darwin', 'TODO: RUSTPYTHON flaky timeout')
|
|
def test_notify(self): super().test_notify()
|
|
|
|
class WithProcessesTestLock(WithProcessesTestLock): # TODO: RUSTPYTHON
|
|
@unittest.skipIf( # TODO: RUSTPYTHON
|
|
sys.platform == 'linux', # TODO: RUSTPYTHON
|
|
'TODO: RUSTPYTHON flaky BrokenPipeError, flaky ConnectionRefusedError, flaky ConnectionResetError, flaky EOFError'
|
|
) # TODO: RUSTPYTHON
|
|
def test_repr_rlock(self): super().test_repr_rlock() # TODO: RUSTPYTHON
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|