(target, run)
| 38 | |
| 39 | @pytest.mark.parametrize("target", targets.all_named) |
| 40 | def test_path_with_unicode(target, run): |
| 41 | test_py = bp_root / "ನನ್ನ_ಸ್ಕ್ರಿಪ್ಟ್.py" |
| 42 | |
| 43 | with debug.Session() as session: |
| 44 | with run(session, target(test_py)): |
| 45 | session.set_breakpoints(test_py, ["bp"]) |
| 46 | |
| 47 | session.wait_for_stop( |
| 48 | "breakpoint", |
| 49 | expected_frames=[some.dap.frame(test_py, name="ಏನಾದರೂ_ಮಾಡು", line="bp")], |
| 50 | ) |
| 51 | session.request_continue() |
| 52 | |
| 53 | |
| 54 | conditions = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…