We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c967ef2 commit f978addCopy full SHA for f978add
pytest-cov/test_pytest_cov.py
@@ -137,6 +137,17 @@ def test_central_cov_min_50(testdir):
137
assert result.ret == 0
138
139
140
+def test_central_cov_min_no_report(testdir):
141
+ script = testdir.makepyfile(SCRIPT)
142
+
143
+ result = testdir.runpytest('-v',
144
+ '--cov', '--cov-source=%s' % script.dirpath(),
145
+ '--cov-min=50',
146
+ script)
147
148
+ assert result.ret == 0
149
150
151
def test_central_nonspecific(testdir):
152
script = testdir.makepyfile(SCRIPT)
153
0 commit comments