-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
122 lines (98 loc) · 2.03 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[tox]
envlist =
py26-r24,
py26-r25,
py26-r26,
py26-r27,
py27-r24,
py27-r25,
py27-r26,
py27-r27,
py27-r30,
py27-r31,
develop
# py33-r30,
# py33-r31,
# py34-r31,
[testenv]
commands =
{envpython} -c "from reportlab import Version; print('%s %s' % ('Reportlab Version', Version))"
nosetests --with-xunit --with-coverage --cover-package=xhtml2pdf
deps =
Pillow>=2.0
coverage
html5lib
httplib2
nose
pyPdf2
[testenv:develop]
deps = -rrequirements.txt
# === python 2.6 ==============================================================
[testenv:py26-r24]
basepython = python2.6
deps =
reportlab>=2.4,<2.5
{[testenv]deps}
[testenv:py26-r25]
basepython = python2.6
deps =
reportlab>=2.5,<2.6
{[testenv]deps}
[testenv:py26-r26]
basepython = python2.6
deps =
reportlab>=2.6,<2.7
{[testenv]deps}
[testenv:py26-r27]
basepython = python2.6
deps =
reportlab>=2.7,<2.8
{[testenv]deps}
# === python 2.7 ==============================================================
[testenv:py27-r24]
basepython = python2.7
deps =
reportlab>=2.4,<2.5
{[testenv]deps}
[testenv:py27-r25]
basepython = python2.7
deps =
reportlab>=2.5,<2.6
{[testenv]deps}
[testenv:py27-r26]
basepython = python2.7
deps =
reportlab>=2.6,<2.7
{[testenv]deps}
[testenv:py27-r27]
basepython = python2.7
deps =
reportlab>=2.7,<2.8
{[testenv]deps}
[testenv:py27-r30]
basepython = python2.7
deps =
reportlab>=3.0,<3.1
{[testenv]deps}
[testenv:py27-r31]
basepython = python2.7
deps =
reportlab>=3.1,<3.2
{[testenv]deps}
# === python 3.3 ==============================================================
[testenv:py33-r30]
basepython = python3.3
deps =
reportlab>=3.0,<3.1
{[testenv]deps}
[testenv:py33-r31]
basepython = python3.3
deps =
reportlab>=3.1,<3.2
{[testenv]deps}
# === python43.4 ==============================================================
[testenv:py34-r31]
basepython = python3.4
deps =
reportlab>=3.1,<3.2
{[testenv]deps}