Skip to content
Snippets Groups Projects
Commit 2f5083bd authored by nenad.petrovic@xlab.si's avatar nenad.petrovic@xlab.si Committed by Mati(ja)c Cankar
Browse files

Fixed result summarization

parent a231ff5b
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,22 @@ class ResultsSummary:
self.outcomes[check]["status"] = "Problems"
return "Problems"
elif check == "terrascan":
if outcome == "":
self.outcomes[check]["status"] = "Passed"
return "Passed"
else:
self.outcomes[check]["status"] = "Problems"
return "Problems"
elif check == "steampunk-scanner":
if outcome == "":
self.outcomes[check]["status"] = "Passed"
return "Passed"
else:
self.outcomes[check]["status"] = "Problems"
return "Problems"
elif check == "tflint":
if outcome == "":
self.outcomes[check]["status"] = "Passed"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment