forked from jazzband/django-dbbackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
36 lines (32 loc) · 789 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
[tox]
envlist = py{2.7,3.2,3.3,3.4,3.5,pypy,pypy3}-django{1.6,1.7,1.8,1.9},lint,docs,functional
[testenv]
passenv = *
basepython =
py2.7: python2.7
py3.2: python3.2
py3.3: python3.3
py3.4: python3.4
py3.5: python3.5
pypypy: pypy
pypypy3: pypy3
deps =
-rrequirements-tests.txt
django1.6: Django>=1.6,<1.7
django1.7: Django>=1.7,<1.8
django1.8: Django>=1.8,<1.9
django1.9: Django>=1.9,<1.10
commands = {posargs:coverage run tests/runtests.py}
[testenv:lint]
basepython = python3.4
deps =
prospector
commands = prospector dbbackup -0
[testenv:docs]
basepython = python3.4
whitelist_externals=make
deps = -rrequirements-docs.txt
commands = make docs
[testenv:functional]
basepython = python2.7
commands = {toxinidir}/tests/functional.sh