Skip to content

Commit 5d1907b

Browse files
committed
fix coverage for setup.py
1 parent febe42c commit 5d1907b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
# this is for sdist to work.
1616
import sys
1717
if sys.version_info < (2, 7):
18-
raise RuntimeError('This version requires Python 2.7+')
18+
# python 2.6 no longer supported, use last 1.x release instead.
19+
raise RuntimeError('This version requires Python 2.7+') # pragma: no cover
1920

2021
setup(
2122
name = 'unittest-xml-reporting',

0 commit comments

Comments
 (0)