We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11a94f4 commit 0687c72Copy full SHA for 0687c72
.evergreen/scripts/run_tests.py
@@ -31,14 +31,14 @@ def handle_perf(start_time: datetime, end_time: datetime):
31
LOGGER.info("results.json:\n%s", json.dumps(results, indent=2))
32
33
results = dict(
34
- status="pass",
+ status="PASS",
35
exit_code=0,
36
test_file="BenchMarkTests",
37
start=int(start_time.timestamp()),
38
end=int(end_time.timestamp()),
39
elapsed=elapsed_secs,
40
)
41
- report = dict(failures=0, results=results)
+ report = dict(failures=0, results=[results])
42
LOGGER.info("report.json\n%s", json.dumps(report, indent=2))
43
44
with open("report.json", "w", newline="\n") as fid:
0 commit comments