forked from jazzband/django-nose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
41 lines (38 loc) · 972 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
41
[tox]
envlist =
py{27,34,35}-django-{18,19,110}{,-postgres,-mysql}
py{27,34,35,36}-django-111{,-postgres,-mysql}
py{35,36}-django-master{,-postgres,-mysql}
flake8
docs
skip_missing_interpreters = True
[testenv]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH COVERAGE RUNTEST_ARGS DATABASE_URL
commands =
./runtests.sh {env:RUNTEST_ARGS:}
- coverage combine
deps =
coveralls
dj-database-url
django-18: Django>=1.8,<1.9
django-19: Django>=1.9,<1.10
django-110: Django==1.10,<1.11
django-111: Django==1.11,<1.12
django-master: https://github.com/django/django/archive/master.tar.gz
postgres: psycopg2
mysql: mysqlclient
[testenv:flake8]
deps =
Django
pep257==0.7.0
pep8==1.6.2
flake8==2.5.0
flake8-docstrings==0.2.1
commands = flake8
[testenv:docs]
changedir = docs
deps =
Sphinx
dj-database-url
Django
commands = sphinx-build -b html -d {envtmpdir}/doctrees . {envtmpdir}/html