forked from lorien/grab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
85 lines (71 loc) · 2.01 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
[tox]
envlist = py27,py34,py27-mp,py34-mp
[testenv]
commands =
make clean
./runtest.py --test-all --backend-mongo --backend-mysql --backend-redis --backend-postgres
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py27-mp]
basepython = python2.7
commands =
make clean
./runtest.py --test-all --backend-mongo --backend-mysql --backend-redis --backend-postgres --mp-mode
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py33-mp]
basepython = python3.3
commands =
make clean
./runtest.py --test-all --backend-mongo --backend-mysql --backend-redis --backend-postgres --mp-mode
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py34-mp]
basepython = python3.4
commands =
make clean
coverage run --source=grab runtest.py --test-all --backend-mongo --backend-mysql --backend-redis --backend-postgres --mp-mode
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py27-nobackend]
basepython = python2.7
commands =
make clean
./runtest.py --test-all
deps =
-rrequirements_dev.txt
[testenv:py34-nobackend]
basepython = python3.4
commands =
make clean
./runtest.py --test-all
deps =
-rrequirements_dev.txt
[testenv:py27-urllib3]
basepython = python2.7
commands =
make clean
./runtest.py --test-grab --backend-mongo --backend-mysql --backend-redis --backend-postgres --transport=urllib3
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py33-urllib3]
basepython = python3.3
commands =
make clean
./runtest.py --test-grab --backend-mongo --backend-mysql --backend-redis --backend-postgres --transport=urllib3
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt
[testenv:py34-urllib3]
basepython = python3.4
commands =
make clean
./runtest.py --test-grab --backend-mongo --backend-mysql --backend-redis --backend-postgres --transport=urllib3
deps =
-rrequirements_dev.txt
-rrequirements_dev_backend.txt