We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b32fa1 commit f014429Copy full SHA for f014429
coverage.conf .coveragerc
@@ -9,9 +9,13 @@ exclude_lines =
9
pragma: no cover
10
if __name__ == .__main__.:
11
12
+# General support infrastructure (third-party libs, testing machinery)
13
+# that we don't bother covering.
14
omit =
15
*/__main__.py
16
llvmlite/enum.py
17
llvmlite/six.py
18
+ llvmlite/_version.py
19
+ llvmlite/tests/customize.py
20
21
[html]
run_coverage.py
@@ -20,7 +20,7 @@
# otherwise some lines will be missed.
config_file = os.path.join(
22
os.path.dirname(os.path.dirname(__file__)),
23
- 'coverage.conf')
+ '.coveragerc')
24
os.environ['COVERAGE_PROCESS_START'] = config_file
25
cov = coverage.coverage(config_file=config_file)
26
cov.start()
0 commit comments