()
| 113 | |
| 114 | @pyfile |
| 115 | def script2(): |
| 116 | import debuggee |
| 117 | import script1 |
| 118 | |
| 119 | debuggee.setup() |
| 120 | script1.do_something() # @bp |
| 121 | print("Done") |
| 122 | |
| 123 | with debug.Session() as session: |
| 124 | with run(session, target(script2)): |
nothing calls this directly
no test coverage detected
searching dependent graphs…