Skip to content
Snippets Groups Projects
Commit 282e4991 authored by penenadpi's avatar penenadpi Committed by Anze Luzar
Browse files

Fixing pylint support

parent 22d2f2b1
No related branches found
No related tags found
No related merge requests found
...@@ -102,6 +102,16 @@ class ResultsSummary: ...@@ -102,6 +102,16 @@ class ResultsSummary:
self.outcomes[check]["status"] = "Passed" self.outcomes[check]["status"] = "Passed"
return "Problems" return "Problems"
if check == "pylint":
if outcome.find("no problems")>-1:
self.outcomes[check]["status"] = "Passed"
return "Passed"
else:
self.outcomes[check]["status"] = "Problems"
return "Problems"
def summarize_no_files(self, check: str): def summarize_no_files(self, check: str):
""" """
Sets the outcome of the selected check to "no files" case Sets the outcome of the selected check to "no files" case
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment