forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
67 lines (54 loc) · 1.52 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
[tox]
envlist = py27_dj17, py27_dj16
skipsdist = True
[testenv]
setenv=PYTHONPATH={toxinidir}
commands = python tests/manage.py {posargs:test}
deps =
singledispatch==3.4.0.3
django-fsm==2.2.0
mock==1.0.1
django-webtest==1.7.7
webtest==2.0.16
# helloworld example
celery==3.1.17
kombu==3.0.24
# shipment example
django-extra-views==0.6.5
django-viewform
# tests dependencies
dj-database-url
django-jenkins
flake8
coverage<3.999
psycopg2
# deploy and development
ipdb
uwsgi
[testenv:py27_dj17]
basepython=python2.7
deps = {[testenv]deps}
django>=1.7
[testenv:py27_dj16]
basepython=python2.7
deps = {[testenv]deps}
django==1.6.8
https://bitbucket.org/andrewgodwin/south/get/e2c9102ee033.zip#egg=South
[testenv:travis]
basepython=python2.7
commands = coverage run --branch --source=viewflow tests/manage.py test viewflow tests.integration tests.unit tests.examples
pip install django>=1.7 -U
coverage run --append --branch --source=viewflow tests/manage.py test viewflow tests.integration tests.unit tests.examples
coveralls
usedevelop = True
deps = {[testenv]deps}
django==1.6.8
https://bitbucket.org/andrewgodwin/south/get/e2c9102ee033.zip#egg=South
coveralls
[testenv:docs]
basepython=python2.7
commands = sphinx-build -b html docs/ docs/_build/
usedevelop = True
deps = {[testenv]deps}
django>=1.7
Sphinx