()
| 333 | @pytest.mark.skipif(not IS_CPYTHON, reason="Functionality to trace other threads requires CPython.") |
| 334 | @pytest.mark.skipif(PYDEVD_USE_SYS_MONITORING, reason="Tracing is not used with sys.monitoring.") |
| 335 | def test_tracing_other_threads(): |
| 336 | # Note: run this test in a separate process so that it doesn't mess with any current tracing |
| 337 | # in our current process. |
| 338 | _check_in_separate_process("_check_tracing_other_threads") |
| 339 | |
| 340 | |
| 341 | def _check_basic_tracing(): |
nothing calls this directly
no test coverage detected