This commit is contained in:
Florian Bruhin 2016-09-26 08:12:18 +02:00
parent 45ce430774
commit aec1cf3842

View File

@ -233,7 +233,8 @@ def check(fileobj, perfect_files):
if filename in perfect_src_files and is_bad:
text = "{} has {}% line and {}% branch coverage!".format(
filename, line_cov, branch_cov)
messages.append(Message(MsgType.insufficent_coverage, filename, text))
messages.append(Message(MsgType.insufficent_coverage, filename,
text))
elif (filename not in perfect_src_files and not is_bad and
filename not in WHITELISTED_FILES):
text = ("{} has 100% coverage but is not in "
@ -263,8 +264,8 @@ def main_check():
subprocess.check_call([sys.executable, '-m', 'coverage', 'report',
'--show-missing', '--include', filters])
print()
print("To debug this, run 'tox -e py35-cov' (or py34-cov) locally and check "
"htmlcov/index.html")
print("To debug this, run 'tox -e py35-cov' (or py34-cov) locally and "
"check htmlcov/index.html")
print("or check https://codecov.io/github/The-Compiler/qutebrowser")
print()