Skip to content

Commit 0687c72

Browse files
committed
fix perf results
1 parent 11a94f4 commit 0687c72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.evergreen/scripts/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ def handle_perf(start_time: datetime, end_time: datetime):
3131
LOGGER.info("results.json:\n%s", json.dumps(results, indent=2))
3232

3333
results = dict(
34-
status="pass",
34+
status="PASS",
3535
exit_code=0,
3636
test_file="BenchMarkTests",
3737
start=int(start_time.timestamp()),
3838
end=int(end_time.timestamp()),
3939
elapsed=elapsed_secs,
4040
)
41-
report = dict(failures=0, results=results)
41+
report = dict(failures=0, results=[results])
4242
LOGGER.info("report.json\n%s", json.dumps(report, indent=2))
4343

4444
with open("report.json", "w", newline="\n") as fid:

0 commit comments

Comments
 (0)