forked from bartTC/django-attachments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
40 lines (36 loc) · 800 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
38
39
40
[tox]
toxworkdir=/tmp/tox/django-attachments
skip_missing_interpreters=True
envlist=
readme
begin
py{27}-django-{111}
py{34,35,36,37}-django-{111,20}
py{35,36,37}-django-{21}
end
[testenv]
commands=
coverage run --rcfile=.coveragerc --append runtests.py
deps=
django-111: django==1.11.*
django-20: django==2.0.*
django-21: django==2.1.*
coverage
[testenv:begin]
basepython = python3.6
skip_install = True
commands = coverage erase
[testenv:end]
basepython = python3.6
skip_install = True
commands=
coverage report
coverage html
[testenv:readme]
skip_install = True
deps =
docutils
Pygments
commands =
rst2html.py --report=info --halt=warning README.rst /dev/null
rst2html.py --report=info --halt=warning CHANGELOG.rst /dev/null