(target, run)
| 24 | |
| 25 | @pytest.mark.parametrize("target", targets.all_named) |
| 26 | def test_path_with_ampersand(target, run): |
| 27 | test_py = bp_root / "a&b" / "test.py" |
| 28 | |
| 29 | with debug.Session() as session: |
| 30 | with run(session, target(test_py)): |
| 31 | session.set_breakpoints(test_py, ["two"]) |
| 32 | |
| 33 | session.wait_for_stop( |
| 34 | "breakpoint", expected_frames=[some.dap.frame(test_py, line="two")] |
| 35 | ) |
| 36 | session.request_continue() |
| 37 | |
| 38 | |
| 39 | @pytest.mark.parametrize("target", targets.all_named) |
nothing calls this directly
no test coverage detected
searching dependent graphs…