-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
57 lines (49 loc) · 1.36 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
[tox]
envlist =
py27-dj15,
py33-dj15,
py27-dj16,
py33-dj16,
py27-dj17,
py33-dj17,
flake8
[testenv]
commands = {envbindir}/django-admin.py test --pythonpath=./ --settings=tests.settings.base
deps =
flake8
django-discover-runner==1.0
[email protected]:cosinnus/cosinnus-core.git@staging#egg=cosinnus
--editable=git+git://github.com/Markush2010/django-bootstrap3.git@develop#egg=django-bootstrap3
--editable=git+http://git.sinnwerkstatt.com/mh/django-multiform.git@master#egg=django-multiform
[testenv:py27-dj15]
basepython = python2.7
deps =
https://github.com/django/django/archive/stable/1.5.x.tar.gz
{[testenv]deps}
[testenv:py33-dj15]
basepython = python3.3
deps =
https://github.com/django/django/archive/stable/1.5.x.tar.gz
{[testenv]deps}
[testenv:py27-dj16]
basepython = python2.7
deps =
https://github.com/django/django/archive/stable/1.6.x.tar.gz
{[testenv]deps}
[testenv:py33-dj16]
basepython = python3.3
deps =
https://github.com/django/django/archive/stable/1.6.x.tar.gz
{[testenv]deps}
[testenv:py27-dj17]
basepython = python2.7
deps =
https://github.com/django/django/archive/master.tar.gz
{[testenv]deps}
[testenv:py33-dj17]
basepython = python3.3
deps =
https://github.com/django/django/archive/master.tar.gz
{[testenv]deps}
[testenv:flake8]
commands = flake8 cosinnus_note --exclude="*migrations*" --ignore=E128,E501