Skip to content

Commit 1f8049b

Browse files
committed
1 parent 48371b9 commit 1f8049b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tests/test_integration.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,20 @@
1515

1616
#: This is just our specific example.
1717
_EXCUDED_LINES = (sys.version_info[1] - 6) * 3 + 6
18+
# 3.9 = 15
1819
# 3.8 = 12
1920
# 3.7 = 9
2021
# 3.6 = 6
2122

2223

2324
def test_integration(cov, capsys):
2425
"""Ensures that coverage is executed correctly."""
25-
assert if_gte_python36() != if_gte_python37()
26-
assert if_gte_python38() != if_gte_python39()
27-
assert always() == 'always'
26+
# We call all functions without any actual version checks.
27+
if_gte_python36()
28+
if_gte_python37()
29+
if_gte_python38()
30+
if_gte_python39()
31+
always()
2832

2933
cov.json_report(outfile='-')
3034
captured = capsys.readouterr()

0 commit comments

Comments
 (0)