Lines Matching full:warnings
52 warnings: Number of warnings
57 fields = ['ok', 'problems', 'errors', 'warnings', 'checks', 'lines',
71 # total: 0 errors, 0 warnings, 159 lines checked
73 # total: 0 errors, 2 warnings, 7 checks, 473 lines checked
74 re_stats = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)')
75 re_stats_full = re.compile('total: (\\d+) errors, (\d+) warnings, (\d+)'
97 result.warnings = int(match.group(2))
152 warning_count += result.warnings
154 print('%d errors, %d warnings, %d checks for %s:' % (result.errors,
155 result.warnings, result.checks, col.Color(col.BLUE, fname)))
156 if (len(result.problems) != result.errors + result.warnings +