зеркало из https://github.com/github/vitess-gh.git
32 строки
789 B
Python
Executable File
32 строки
789 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
# this is a small helper script to parse test coverage and display stats.
|
|
import re
|
|
import sys
|
|
|
|
coverage_pattern = re.compile(r"coverage: (\d+).(\d+)% of statements")
|
|
|
|
no_test_file_count = 0
|
|
coverage_count = 0
|
|
coverage_sum = 0.0
|
|
|
|
for line in sys.stdin:
|
|
print line,
|
|
sys.stdout.flush
|
|
|
|
if line.find('[no test files]') != -1:
|
|
no_test_file_count += 1
|
|
continue
|
|
|
|
m = coverage_pattern.search(line)
|
|
if m != None:
|
|
coverage_count += 1
|
|
coverage_sum += float(m.group(1) + "." + m.group(2))
|
|
continue
|
|
|
|
directories_covered = coverage_count * 100 / (no_test_file_count + coverage_count)
|
|
average_coverage = coverage_sum / coverage_count
|
|
|
|
print "Directory test coverage: %u%%" % directories_covered
|
|
print "Average test coverage: %u%%" % int(average_coverage)
|