Skip to content
Snippets Groups Projects
Commit 38444739 authored by Simon Heimberg's avatar Simon Heimberg
Browse files

run-tests: separate exit code when no failed tests but warned ones

This can be used by buildbot to set the result "warnings" instead of "failed".
parent a46c9fea
No related branches found
No related tags found
No related merge requests found
......@@ -1167,6 +1167,8 @@
if failed:
return 1
if warned:
return 80
testtypes = [('.py', pytest, '.out'),
('.t', tsttest, '')]
......
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