From e08cb957f538754f13fc4dd314bf20471b116ca3 Mon Sep 17 00:00:00 2001 From: Garmelon Date: Wed, 4 Feb 2026 16:53:33 +0100 Subject: [PATCH] chore: fail benchmarks if lakeprof upload fails (#12313) --- tests/bench-radar/build/lakeprof_report_upload.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bench-radar/build/lakeprof_report_upload.py b/tests/bench-radar/build/lakeprof_report_upload.py index 8279c3241c..f908ebb9d9 100644 --- a/tests/bench-radar/build/lakeprof_report_upload.py +++ b/tests/bench-radar/build/lakeprof_report_upload.py @@ -35,9 +35,9 @@ def main() -> None: with open("index.html", "w") as f: f.write(template) - run("curl", "-T", "index.html", f"{base_url}/index.html") - run("curl", "-T", "src/lakeprof.log", f"{base_url}/lakeprof.log") - run("curl", "-T", "src/lakeprof.trace_event", f"{base_url}/lakeprof.trace_event") + run("curl", "-fT", "index.html", f"{base_url}/index.html") + run("curl", "-fT", "src/lakeprof.log", f"{base_url}/lakeprof.log") + run("curl", "-fT", "src/lakeprof.trace_event", f"{base_url}/lakeprof.trace_event") if __name__ == "__main__":