Skip to content

Commit 6bd04b6

Browse files
committed
Add test env for Python 2.7 with configparser (#1230)
1 parent 111bd08 commit 6bd04b6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ matrix:
1414
env:
1515
- TOXENV=py27
1616
- END_TO_END=1
17+
- python: 2.7
18+
env:
19+
- TOXENV=py27-configparser
20+
- END_TO_END=1
1721
- python: 3.4
1822
env:
1923
- TOXENV=py34

tox.ini

+9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ passenv = END_TO_END
1212
commands =
1313
py.test {posargs}
1414

15+
[testenv:py27-configparser]
16+
;see https://github.com/Supervisor/supervisor/issues/1230
17+
basepython = python2.7
18+
deps =
19+
{[testenv]deps}
20+
configparser
21+
passenv = {[testenv]passenv}
22+
commands = {[testenv]commands}
23+
1524
[testenv:cover]
1625
basepython = python2.7
1726
commands =

0 commit comments

Comments
 (0)