Skip to content
Snippets Groups Projects
Commit f9c1ecbe authored by Gioacchino Vino's avatar Gioacchino Vino
Browse files

Added logic accepted/know issues during oid validation

parent 2f9691b2
No related branches found
No related tags found
1 merge request!147Debug paas ci
......@@ -154,13 +154,13 @@ logging.info(pretty_json(reports))
with open(summary_filename, "w") as f:
f.write(json.dumps(reports))
logging.debug("qwe")
logging.debug(accepted_oids)
logging.debug(new_oids)
# Writing oids details on file
with open(oids_filename, "w") as f:
f.write("ACCEPTED OIDs\n")
f.writelines([msg + "\n" for msg in accepted_oids])
f.write("\n")
f.write("NEW OIDs\n")
f.writelines([msg + "\n" for msg in new_oids])
if len(accepted_oids) > 0:
f.write("ACCEPTED OIDs\n")
f.writelines([msg + "\n" for msg in accepted_oids])
f.write("\n")
if len(new_oids) > 0:
f.write("NEW OIDs\n")
f.writelines([msg + "\n" for msg in new_oids])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment