-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
40 lines (35 loc) · 767 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
[tox]
envlist =
py27-django16,
py27-django17
[testenv]
usedevelop = true
setenv =
PYTHONPATH = {toxinidir}/tests
commands = django-admin.py test grass --settings=settings
[testenv:py27-django16]
basepython = python2.7
deps =
Django>=1.6,<1.7
django-autocomplete-light>=2.0.0a1
[testenv:py27-django17]
basepython = python2.7
deps =
Django>=1.7,<1.8
django-autocomplete-light>=2.0.0a1
[testenv:demo]
basepython = python2.7
deps =
Django>=1.6,<1.7
django-autocomplete-light>=2.0.0a1
changedir = tests
commands =
python manage.py syncdb
python manage.py runserver
[testenv:shell]
basepython = python2.7
deps =
Django>=1.6,<1.7
django-autocomplete-light>=2.0.0a1
changedir = tests
commands = python manage.py shell