-
Notifications
You must be signed in to change notification settings - Fork 11
/
tox.ini
64 lines (58 loc) · 1.66 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
[testenv]
skipsdist = True
usedevelop = True
deps = -r{toxinidir}/requirements_dev.txt
deps15 =
https://github.com/django/django/archive/stable/1.5.x.zip#egg=django
deps16 =
https://github.com/django/django/archive/stable/1.6.x.zip#egg=django
deps17 =
https://github.com/django/django/archive/1.7b4.zip
fp-migratewithsouth =
python {toxinidir}/sandboxes/fancypages/manage.py syncdb --noinput
fp-migratewithdjango =
python {toxinidir}/sandboxes/fancypages/manage.py migrate --noinput
commands = py.test {posargs:tests}
[testenv:py27-fp-1.5]
basepython=python2.7
deps = {[testenv]deps}
{[testenv]deps15}
[testenv:py27-fp-1.6]
basepython=python2.7
deps = {[testenv]deps}
{[testenv]deps16}
[testenv:py27-fp-1.6-postgres]
basepython=python2.7
deps = {[testenv]deps}
{[testenv]deps16}
commands = {[testenv]fp-migratewithsouth}
environment = DJANGO_CONFIGURATION="FancypagesPostgres"
[testenv:py27-fp-1.6-mysql]
basepython=python2.7
deps = {[testenv]deps}
{[testenv]deps16}
commands = {[testenv]fp-migratewithsouth}
environment = DJANGO_CONFIGURATION="FancypagesMysql"
[testenv:py27-fp-1.7]
basepython=python2.7
deps = {[testenv]deps}
{[testenv]deps17}
commands = {[testenv]fp-migratewithdjango}
environment = DJANGO_CONFIGURATION="FancypagesPostgres"
#[testenv:py27-ofp-1.5]
#basepython=python2.7
#deps = {[testenv]deps}
# {[testenv]deps15}
#commands = {[testenv]ocommands}
#
#[testenv:py27-ofp-1.6]
#basepython=python2.7
#deps = {[testenv]deps}
# {[testenv]deps16}
#commands = {[testenv]ocommands}
#
#[testenv:py27-ofp-1.7]
#basepython=python2.7
#deps = {[testenv]deps}
# {[testenv]deps17}
#commands = {[testenv]ocommands}