Skip to content

Commit

Permalink
Run subprocesses with exit code check
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaMuravjov committed Mar 5, 2024
1 parent f2f37f4 commit 916dadb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions cli/runners/all_pairs_cflr_tool_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def run(self) -> CflrToolRunResult:
cwd=self.work_dir,
stdout=subprocess.PIPE,
text=True,
check=True
)
return self.safe_parse_results(process)

Expand Down
1 change: 1 addition & 0 deletions cli/runners/gigascale_algo_all_pairs_cflr_tool_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def run(self) -> CflrToolRunResult:
cwd=self.work_dir,
stdout=subprocess.PIPE,
text=True,
check=True,
input=
f"""
set timeout -1
Expand Down

0 comments on commit 916dadb

Please sign in to comment.