From c8e1f82adefd7d2d70f81d89e5edb24bb5d78b8e Mon Sep 17 00:00:00 2001 From: Geoffrey Ragot Date: Thu, 24 Oct 2024 21:08:49 +0200 Subject: [PATCH] fix: benchmark report file --- test/performance/Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/performance/Earthfile b/test/performance/Earthfile index 92f853d53..b12580238 100644 --- a/test/performance/Earthfile +++ b/test/performance/Earthfile @@ -25,7 +25,7 @@ run: RUN mkdir -p report WITH DOCKER --load=postgres:15-alpine=../../+postgres - RUN go test -run ^$ -tags it,local -report.file ./report/report.json -timeout 60m $args . | tee -a ./report/benchmark-output.txt + RUN go test -run ^$ -tags it,local -report.file ./report/report.json -timeout 60m $args . | tee ./report/benchmark-output.txt END SAVE ARTIFACT ./report/report.json