(script, *args, **kwargs)
| 36 | |
| 37 | |
| 38 | def run_script(script, *args, **kwargs): |
| 39 | print_command(script, args) |
| 40 | return subprocess.check_call([os.path.join(SCRIPTS, script), *args], **kwargs) |
| 41 | |
| 42 | |
| 43 | SCRIPTS = ROOT / "tooling" / "scripts" |
nothing calls this directly
no test coverage detected