forked from numba/numba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_coverage.py
43 lines (37 loc) · 1.11 KB
/
run_coverage.py
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
40
41
42
43
#!/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 numba import runtests
html_dir = 'htmlcov'
try:
# NOTE: we force single-process mode, since some hacks are needed
# for multiprocess'ed coverage to work.
runtests.main(*sys.argv[1:])
except SystemExit:
pass
finally:
cov.stop()
cov.save()
cov.combine()
if os.path.exists(html_dir):
shutil.rmtree(html_dir)
cov.html_report(directory=html_dir)