Skip to content

Commit 19b1664

Browse files
author
Steve Canny
committed
build: add Python 3.5 to tox environments
* behave stopped working with Python 2.6 with v1.2.5, lacking a dependency for `importlib`. Fix this by adding it to the tox dependencies list.
1 parent 17dce95 commit 19b1664

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tox.ini

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python_classes = Test Describe
1111
python_functions = it_ they_
1212

1313
[tox]
14-
envlist = py26, py27, py33, py34
14+
envlist = py26, py27, py33, py34, py35
1515

1616
[testenv]
1717
deps =
@@ -25,6 +25,15 @@ commands =
2525
py.test -qx
2626
behave --format progress --stop --tags=-wip
2727

28+
[testenv:py26]
29+
deps =
30+
importlib>=1.0.3
31+
behave
32+
lxml
33+
mock
34+
pyparsing
35+
pytest
36+
2837
[testenv:py33]
2938
deps =
3039
behave

0 commit comments

Comments
 (0)