Skip to content

Commit c998937

Browse files
author
Steve Canny
committed
build: add tox.ini config for py33 and py34
1 parent 57b55ec commit c998937

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

tox.ini

+23-4
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,37 @@ python_classes = Test Describe
1010
python_functions = test_ it_ they_ but_
1111

1212
[tox]
13-
envlist = py26, py27
13+
envlist = py26, py27, py33, py34
1414

1515
[testenv]
1616
deps =
17+
behave
18+
lxml>=3.1.0
1719
mock
20+
Pillow>=2.6.1
1821
pyparsing>=2.0.1
1922
pytest
23+
XlsxWriter>=0.5.7
24+
25+
commands =
26+
py.test -qx
27+
behave --format progress --stop --tags=-wip
28+
; behave --stop --tags=-wip
29+
30+
[testenv:py33]
31+
deps =
2032
behave
2133
lxml>=3.1.0
2234
Pillow>=2.6.1
35+
pyparsing>=2.0.1
36+
pytest
2337
XlsxWriter>=0.5.7
2438

25-
commands =
26-
py.test -x
27-
behave --stop
39+
[testenv:py34]
40+
deps =
41+
behave
42+
lxml>=3.1.0
43+
Pillow>=2.6.1
44+
pyparsing>=2.0.1
45+
pytest
46+
XlsxWriter>=0.5.7

0 commit comments

Comments
 (0)