forked from redis/redis-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
46 lines (39 loc) · 775 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
[tox]
envlist = py25, py26, py27, py32, py33, hi26, hi27, hi32, hi33, pep8
[testenv]
deps=pytest
commands = py.test []
downloadcache = {toxworkdir}/cache
[testenv:py25]
downloadcache = {toxworkdir}/cache
setenv =
PIP_INSECURE=1
deps =
pytest
[testenv:hi26]
downloadcache = {toxworkdir}/cache
deps =
hiredis
pytest
commands = py.test []
[testenv:hi27]
downloadcache = {toxworkdir}/cache
deps =
hiredis
pytest
commands = py.test []
[testenv:hi32]
downloadcache = {toxworkdir}/cache
deps =
hiredis
pytest
commands = py.test []
[testenv:hi33]
downloadcache = {toxworkdir}/cache
deps =
hiredis
pytest
commands = py.test []
[testenv:pep8]
deps = pep8
commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,doc,build,*.egg .