forked from django-parler/django-parler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
37 lines (34 loc) · 818 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=
py27-django{17,18,19,110,111},
py32-django{17,18},
py33-django{17,18},
py34-django{17,18,19,110,111},
# py33-django-dev,
coverage,
docs,
[testenv]
deps = django-polymorphic
django17: Django >= 1.7,<1.8
django18: Django >= 1.8,<1.9
django19: Django >= 1.9,<1.10
django110: Django >= 1.10.1,<1.11
django111: Django >= 1.11,<1.12
django-dev: https://github.com/django/django/tarball/master
commands=
python runtests.py
[testenv:docs]
changedir=docs
deps=
django==1.9
Sphinx
commands=sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:coverage]
basepython=python3.6
deps=
django==1.11
coverage==4.4.1
commands=
coverage erase
coverage run --source=example/article,parler runtests.py
coverage report