mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
add empty out and err columns
This commit is contained in:
parent
a312cb6b0d
commit
ee8e855cbe
@ -22,8 +22,14 @@ def export_testcases_json(report, path):
|
||||
for el in testcase:
|
||||
if el.tag == "system-err":
|
||||
row["stderr"] = el.text
|
||||
else:
|
||||
row["stderr"] = ""
|
||||
|
||||
if el.tag == "system-out":
|
||||
row["stdout"] = el.text
|
||||
else:
|
||||
row["stdout"] = ""
|
||||
|
||||
json.dump(row, testcases_file)
|
||||
testcases_file.write("\n")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user