forked from divio/aldryn-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
37 lines (34 loc) · 933 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
[tox]
envlist =
flake8
py{34,27}-dj19-cms32
py{34,33,27}-dj18-cms{32,31}
py{34,33}-dj17-cms{32,31,30}
py27-dj{17,16}-cms{31,30}
py{27,26}-dj16-cms31
py{27,26}-dj15-cms{31,30}
py{27,26}-dj14-cms30
skip_missing_interpreters=True
[testenv]
commands =
{envpython} --version
coverage erase
coverage run test_settings.py
coverage report
deps=
cms30: django-cms>=3.0.12,<3.1
cms31: django-cms>=3.1,<3.2
cms32: django-cms>=3.2,<3.3
dj14: -rtest_requirements/django_1.4.txt
dj15: -rtest_requirements/django_1.5.txt
dj16: -rtest_requirements/django_1.6.txt
dj17: -rtest_requirements/django_1.7.txt
dj18: -rtest_requirements/django_1.8.txt
dj19: -rtest_requirements/django_1.9.txt
[testenv:flake8]
deps = flake8
commands = flake8
[flake8]
ignore = E251,E128
max-line-length = 120
exclude = aldryn_search/tests.py,aldryn_search/test_settings.py,docs/conf.py