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 48371b9 commit 1f8049bCopy full SHA for 1f8049b
tests/test_integration.py
@@ -15,16 +15,20 @@
15
16
#: This is just our specific example.
17
_EXCUDED_LINES = (sys.version_info[1] - 6) * 3 + 6
18
+# 3.9 = 15
19
# 3.8 = 12
20
# 3.7 = 9
21
# 3.6 = 6
22
23
24
def test_integration(cov, capsys):
25
"""Ensures that coverage is executed correctly."""
- assert if_gte_python36() != if_gte_python37()
26
- assert if_gte_python38() != if_gte_python39()
27
- assert always() == 'always'
+ # We call all functions without any actual version checks.
+ if_gte_python36()
28
+ if_gte_python37()
29
+ if_gte_python38()
30
+ if_gte_python39()
31
+ always()
32
33
cov.json_report(outfile='-')
34
captured = capsys.readouterr()
0 commit comments