forked from viewflow/viewflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
68 lines (55 loc) · 1.74 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
[tox]
envlist = py33_dj18, py33_dj17, py33_dj16
skipsdist = True
[testenv]
setenv=PYTHONPATH={toxinidir}
commands = python tests/manage.py {posargs:test}
deps =
singledispatch==3.4.0.3
django-fsm==2.2.1
django-filter==0.10.0
django-webtest==1.7.8
webtest==2.0.18
git+https://github.com/viewflow/django-material.git
# helloworld example
celery==3.1.18
kombu==3.0.26
# shipment example
django-extra-views==0.7.1
# tests dependencies
dj-database-url
django-jenkins
flake8
coverage<3.999
psycopg2
# deploy and development
django-template-debug
ipdb
uwsgi
[testenv:py33_dj18]
basepython=python3.3
deps = {[testenv]deps}
django==1.8.3
[testenv:py33_dj17]
basepython=python3.3
deps = {[testenv]deps}
django==1.7.9 # rq.filter: 1.7,<1.7.999
[testenv:py33_dj16]
basepython=python3.3
deps = {[testenv]deps}
django==1.6.11 # rq.filter: 1.6,<1.6.999
https://bitbucket.org/andrewgodwin/south/get/e2c9102ee033.zip#egg=South
[testenv:travis]
basepython=python3.3
commands = coverage run --branch --source=viewflow tests/manage.py test viewflow tests.integration tests.unit tests.examples
pip uninstall South -y
pip install django==1.7.9 -U # rq.filter: 1.7,<1.7.999
coverage run --append --branch --source=viewflow tests/manage.py test viewflow tests.integration tests.unit tests.examples
pip install django>=1.8.3 -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.11
South
coveralls