From 3ec1c08e15964e4b83a93d3c2665724948523e51 Mon Sep 17 00:00:00 2001 From: mahmamdouh Date: Sun, 4 Jan 2026 15:51:17 +0100 Subject: [PATCH] repo structure --- TPF/scenario_execution.py | 1 + 1 file changed, 1 insertion(+) 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}")