We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d11931 + df866f0 commit 3e209feCopy full SHA for 3e209fe
src/pytest_cov/plugin.py
@@ -68,7 +68,7 @@ def pytest_addoption(parser):
68
group.addoption('--no-cov-on-fail', action='store_true', default=False,
69
help='do not report coverage if test run fails, '
70
'default: False')
71
- group.addoption('--cov-fail-under', action='store', metavar='MIN', type='int',
+ group.addoption('--cov-fail-under', action='store', metavar='MIN', type=int,
72
help='Fail if the total coverage is less than MIN.')
73
group.addoption('--cov-append', action='store_true', default=False,
74
help='do not delete coverage but append to current, '
0 commit comments