forked from lincolnloop/python-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
35 lines (32 loc) · 673 Bytes
/
tox.ini
File metadata and controls
35 lines (32 loc) · 673 Bytes
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
[tox]
distribute = False
envlist =
py25,
py26,
py27,
py33,
[testenv]
deps =
pillow
git+git://github.com/ojii/pymaging.git#egg=pymaging
git+git://github.com/ojii/pymaging-png.git#egg=pymaging-png
commands =
{envbindir}/python -m unittest {posargs:qrcode.tests}
[testenv:py25]
deps =
pillow<2.0.0
unittest2
lxml
commands =
{envbindir}/unit2 {posargs:qrcode.tests}
setenv =
PIP_INSECURE=1
[testenv:py26]
deps =
pillow
git+git://github.com/ojii/pymaging.git#egg=pymaging
git+git://github.com/ojii/pymaging-png.git#egg=pymaging-png
unittest2
lxml
commands =
{envbindir}/unit2 {posargs:qrcode.tests}