forked from divio/aldryn-translation-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
34 lines (29 loc) · 718 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
[tox]
envlist =
flake8
isort
py{27,34,35,36}-dj111-cms{34,35,36}
py{34,35,36}-dj20-cms36
py{35,36}-dj21-cms36
skip_missing_interpreters=True
[testenv]
deps =
-r{toxinidir}/tests/requirements.txt
dj111: Django>=1.11,<2.0
dj20: Django>=2.0,<2.1
dj21: Django>=2.1,<2.2
cms34: django-cms>=3.4,<3.5
cms35: django-cms>=3.5,<3.6
cms36: https://github.com/divio/django-cms/archive/release/3.6.x.zip
commands =
{envpython} --version
- coverage erase
coverage run test_settings.py
- coverage report
[testenv:flake8]
commands = flake8
basepython = python3.5
[testenv:isort]
deps = isort
commands = isort -c -rc -df aldryn_translation_tools
skip_install = true