(context)
| 311 | |
| 312 | |
| 313 | def clean_targets(context): |
| 314 | if context.target in {"all", "build"}: |
| 315 | clean("build") |
| 316 | |
| 317 | for host in HOSTS: |
| 318 | if context.target in {"all", "hosts", host}: |
| 319 | clean(host) |
| 320 | |
| 321 | |
| 322 | def setup_ci(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…