We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a336bc1 commit 3d630f7Copy full SHA for 3d630f7
common.py
@@ -23,7 +23,7 @@ def parse_job(job):
23
result = {}
24
result["status"] = job["result"]["status"] in { 0, "0", "pass" }
25
result["worker"] = job["result"]["worker"]
26
- result["runtime"] = float(job["result"]["runtime"])
+ result["runtime"] = float(job["result"].get("runtime", 0))
27
result["output"] = job["result"]["output"]
28
result["name"] = os.path.join(
29
*job["result"]["body"]["command"].split()[1:]
0 commit comments