1[tool:pytest]
2testpaths = test
3
4[coverage:run]
5branch = True
6source = h2
7
8[coverage:report]
9fail_under = 100
10show_missing = True
11exclude_lines =
12	pragma: no cover
13	assert False, "Should not be reachable"
14	.*:.* # Python \d.*
15	.*:.* # Platform-specific:
16
17[coverage:paths]
18source =
19	src
20	.tox/*/site-packages
21
22[egg_info]
23tag_build =
24tag_date = 0
25
26