(get_module)
| 330 | |
| 331 | @pytest.mark.skipif(sys.version_info >= (3, 12), reason="no numpy.distutils") |
| 332 | def test_context_locality(get_module): |
| 333 | if (sys.implementation.name == 'pypy' |
| 334 | and sys.pypy_version_info[:3] < (7, 3, 6)): |
| 335 | pytest.skip('no context-locality support in PyPy < 7.3.6') |
| 336 | asyncio.run(async_test_context_locality(get_module)) |
| 337 | |
| 338 | |
| 339 | def concurrent_thread1(get_module, event): |
nothing calls this directly
no test coverage detected