Fixed build failures when tests are skipped

This commit is contained in:
axl89 2016-08-16 20:41:14 +02:00
parent 139fb60d84
commit de484d8906
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ print "Tests succeeded: %s" % c.success
print "Tests skipped: %s" % c.skipped
print "Tests with errors: %s" % c.errors
if (len(c.failures)+len(c.errors)+len(c.skipped)) != 0:
if (len(c.failures)+len(c.errors)) != 0:
sys.exit(1)
else: