Skip to content

Commit

Permalink
Remove extra params in running samples
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Apr 30, 2024
1 parent 7e73a5e commit 1ffefd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/run_sample_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def launch_sample():
elif (config_json['language'] == "CPP"):
try:
sample_return = subprocess.run(
args=config_json_arguments_list, executable=config_json['sample_file'], timeout=600, stderr=subprocess.STDOUT, stdout=subprocess.PIPE)
args=config_json_arguments_list, executable=config_json['sample_file'], timeout=600)
exit_code = sample_return.returncode
except subprocess.TimeoutExpired as timeOut:
sys.exit(-1)
Expand Down

0 comments on commit 1ffefd5

Please sign in to comment.