forked from django-webtest/django-webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
81 lines (63 loc) · 1.09 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
[tox]
envlist =
py26,py27,pypy,
dj12,dj13,dj14,dj15,
dj15-py32,dj15-py33,dj15-py33-postgres,
py26-wt1x, py32-wt2x
[testenv]
basepython = python2.7
deps=
WebTest
django
commands=
python django_webtest_tests/runtests.py []
[testenv:py26]
basepython = python2.6
[testenv:pypy]
basepython = pypy
[testenv:dj12]
deps=
WebTest
django == 1.2.7
[testenv:dj13]
deps=
WebTest
django == 1.3.7
[testenv:dj14]
deps=
WebTest
django == 1.4.5
[django15]
deps=
django == 1.5
[testenv:dj15]
deps=
WebTest
{[django15]deps}
[testenv:dj15-py32]
deps=
{[testenv:dj15]deps}
basepython = python3.2
[testenv:dj15-py33]
deps=
{[testenv:dj15]deps}
basepython = python3.3
[testenv:py26-wt1x]
basepython = python2.6
deps =
WebTest < 2.0
django
[testenv:py32-wt2x]
basepython = python3.2
deps =
WebTest >= 2.0
django
; In order to run tests for this environment,
; create a 'django_webtest_tests' PostgreSQL database.
[testenv:dj15-py33-postgres]
deps=
{[testenv:dj15]deps}
psycopg2
basepython = python3.3
setenv=
USE_POSTGRES=True