repo structure

This commit is contained in:
2026-01-04 15:51:17 +01:00
parent a13b8ca858
commit 3ec1c08e15

View File

@@ -145,6 +145,7 @@ def generate_html_report(scenario_name, results, output_path):
def save_summary(results, task_id_path): def save_summary(results, task_id_path):
json_path = os.path.join(task_id_path, "final_summary.json") json_path = os.path.join(task_id_path, "final_summary.json")
with open(json_path, "w") as f: 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) json.dump(results, f, indent=4)
print(f"\nFinal results saved to {json_path}") print(f"\nFinal results saved to {json_path}")