forked from scanny/python-pptx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
57 lines (49 loc) · 943 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Configuration for tox and pytest
[flake8]
exclude = dist,docs,*.egg-info,.git,lab,ref,_scratch,spec,.tox
[pytest]
norecursedirs = docs *.egg-info features .git pptx spec .tox
python_classes = Test Describe
python_functions = test_ it_ they_ but_
[tox]
envlist = py26, py27, py33, py34
[testenv]
deps =
behave==1.2.5
lxml>=3.1.0
mock
Pillow>=2.6.1
pyparsing>=2.0.1
pytest
XlsxWriter>=0.5.7
commands =
py.test -qx
behave --format progress --stop --tags=-wip
; behave --stop --tags=-wip
[testenv:py26]
deps =
behave==1.2.5
importlib
lxml>=3.1.0
mock
Pillow>=2.6.1
pyparsing>=2.0.1
pytest
XlsxWriter>=0.5.7
[testenv:py33]
deps =
behave==1.2.5
lxml>=3.1.0
Pillow>=2.6.1
pyparsing>=2.0.1
pytest
XlsxWriter>=0.5.7
[testenv:py34]
deps =
behave==1.2.5
lxml>=3.1.0
Pillow>=2.6.1
pyparsing>=2.0.1
pytest
XlsxWriter>=0.5.7