()
| 11 | def test_evaluate(pyfile, target, run): |
| 12 | @pyfile |
| 13 | def code_to_debug(): |
| 14 | import debuggee |
| 15 | |
| 16 | debuggee.setup() |
| 17 | a = 1 |
| 18 | b = {"one": 1, 2: "two"} |
| 19 | print(a, b) # @bp |
| 20 | |
| 21 | with debug.Session() as session: |
| 22 | with run(session, target(code_to_debug)): |
nothing calls this directly
no test coverage detected
searching dependent graphs…