Skip to content

Commit 81cd23b

Browse files
marc-hbnashif
authored andcommitted
check_compliance.py: fix Error(msg, "skipped")
Replace with Error(msg, "error") Typo introduced in previous commit / PR zephyrproject-rtos#26. Fixes the following console output: WARNING : Skipped Gitlint failed: ... I don't know the impact on Github however this just restores the previous behavior. Signed-off-by: Marc Herbert <[email protected]>
1 parent 8dac2d6 commit 81cd23b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci/check_compliance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def error(self, msg):
105105
if self.case.result:
106106
msg += "\n\nFailures before error: " + self.case.result._elem.text
107107

108-
self.case.result = Error(msg, "skipped")
108+
self.case.result = Error(msg, "error")
109109

110110
raise EndTest
111111

0 commit comments

Comments
 (0)