Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Apr 30, 2024
1 parent 5128e10 commit 91d09b7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utils/run_sample_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,10 @@ def launch_sample():
try:
sample_return = subprocess.run(
args=config_json_arguments_list, executable=config_json['sample_file'], timeout=600, capture_output=True, text=True)
print("stdout:")
print(sample_return.stdout)
print("stderr:")
print(sample_return.stderr)
exit_code = sample_return.returncode
except subprocess.TimeoutExpired as timeOut:
sys.exit(-1)
Expand Down

0 comments on commit 91d09b7

Please sign in to comment.