Skip to content
Snippets Groups Projects
Commit b1e666ec authored by Florent Thiery's avatar Florent Thiery
Browse files

fix print at the end of the test

parent bfb45075
No related branches found
No related tags found
No related merge requests found
...@@ -124,11 +124,13 @@ WARNING = 3 ...@@ -124,11 +124,13 @@ WARNING = 3
UNTESTABLE = 2 UNTESTABLE = 2
if error: if error:
print('All ok') print('Errors found')
code = ERROR code = ERROR
elif warning: elif warning:
print('Some warnings were found')
code = WARNING code = WARNING
else: else:
print('All ok')
code = OK code = OK
sys.exit(code) sys.exit(code)
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