.coveragerc (539B)
1 [run] 2 include = 3 pluggy/* 4 testing/* 5 */lib/python*/site-packages/pluggy/* 6 */pypy*/site-packages/pluggy/* 7 *\Lib\site-packages\pluggy\* 8 branch = 1 9 10 [paths] 11 source = pluggy/ 12 */lib/python*/site-packages/pluggy/ 13 */pypy*/site-packages/pluggy/ 14 *\Lib\site-packages\pluggy\ 15 16 [report] 17 exclude_lines = 18 # Have to re-enable the standard pragma 19 pragma: no cover 20 21 if TYPE_CHECKING: 22 if False: 23 24 if __name__ == .__main__.: 25 26 raise NotImplementedError 27 28 # Ignore coverage on lines solely with `...` 29 ^\s*\.\.\.\s*$