(command: _tp.Sequence[str],
cwd: _pl.Path,
*,
shell=False,
env=None)
| 9 | |
| 10 | |
| 11 | def run_command(command: _tp.Sequence[str], |
| 12 | cwd: _pl.Path, |
| 13 | *, |
| 14 | shell=False, |
| 15 | env=None) -> None: |
| 16 | _log.info("Running: cd %s && %s", str(cwd), " ".join(command)) |
| 17 | _sp.check_call(command, cwd=cwd, shell=shell, env=env) |
| 18 | |
| 19 | |
| 20 | def prepare_model_tests( |
no test coverage detected