We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d4fe0 commit 81b2fbdCopy full SHA for 81b2fbd
idom/client/manage.py
@@ -135,7 +135,9 @@ def _run_subprocess(args: List[str], cwd: Path) -> None:
135
cmd, *args = args
136
which_cmd = shutil.which(cmd)
137
if which_cmd is None:
138
- raise RuntimeError(f"Failed to run command - {cmd!r} is not installed.")
+ raise RuntimeError( # pragma: no cover
139
+ f"Failed to run command - {cmd!r} is not installed."
140
+ )
141
try:
142
subprocess.run(
143
[which_cmd] + args,
0 commit comments