forked from what-digital/cmsplugin-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
30 lines (27 loc) · 744 Bytes
/
tox.ini
File metadata and controls
30 lines (27 loc) · 744 Bytes
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
[tox]
toxworkdir = {homedir}/.toxenvs/cmsplugin-filer
envlist =
flake8
py{35,34,27}-dj19-cms{34,33,32}
py{35,34,33,27}-dj18-cms{34,33,32,31}
[testenv]
commands =
{envpython} --version
- coverage erase
coverage run test_settings.py
- coverage report
deps=
dj18: -rtest_requirements/django_1.8.txt
dj19: -rtest_requirements/django_1.9.txt
cms31: django-cms>3.1.1,<3.2
cms32: django-cms>=3.2,<3.3
cms33: django-cms>=3.3,<3.4
cms34: https://github.com/divio/django-cms/archive/develop.zip
[testenv:flake8]
deps = flake8
commands = flake8
basepython = python2.7
[flake8]
ignore = E251,E128,E501
exclude = cmsplugin_filer_*/migrations/*,docs/conf.py,node_modules/*,build/*
max-line-length = 120