Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Binyang2014 committed Aug 30, 2024
1 parent a5ed7fe commit a15cb19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/generate_test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ def run_examples(input_folder, configs, output_folder):
input_file_path = Path(input_folder) / file_name
# Strip the ".py" from the filename and add ".output"
base_file_name = file_name[:-3] if file_name.endswith('.py') else file_name
output_file_path = Path(output_folder) / f"{base_file_name}.xml"
base_file_name = base_file_name.replace("/", "_")
output_file_path = Path(output_folder) / f"{base_file_name}.output"

# Construct the command to run the Python script
command = ["python3", str(input_file_path)] + args
Expand Down

0 comments on commit a15cb19

Please sign in to comment.