1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#!/usr/bin/env python
"""
Run code coverage sampling over the test suite, and produce
an HTML report in "htmlcov".
"""
import os
import shutil
import sys
try:
import coverage
except ImportError:
raise ImportError("Please install the coverage module "
"(https://pypi.python.org/pypi/coverage/)")
if __name__ == "__main__":
# We must start coverage before importing the package under test,
# otherwise some lines will be missed.
config_file = os.path.join(
os.path.dirname(os.path.dirname(__file__)),
'.coveragerc')
os.environ['COVERAGE_PROCESS_START'] = config_file
cov = coverage.coverage(config_file=config_file)
cov.start()
from llvmlite.tests import run_tests
html_dir = 'htmlcov'
try:
run_tests()
finally:
cov.stop()
cov.save()
cov.combine()
if os.path.exists(html_dir):
shutil.rmtree(html_dir)
cov.html_report(directory=html_dir)
|