diff --git a/TPF/scenario_execution.py b/TPF/scenario_execution.py index 275cb9b..8827dbf 100644 --- a/TPF/scenario_execution.py +++ b/TPF/scenario_execution.py @@ -145,6 +145,7 @@ def generate_html_report(scenario_name, results, output_path): def save_summary(results, task_id_path): json_path = os.path.join(task_id_path, "final_summary.json") with open(json_path, "w") as f: + results = results.replace("file:///home/asf/testarena/", "http://asf-server.duckdns.org:8080/results/") json.dump(results, f, indent=4) print(f"\nFinal results saved to {json_path}")