summaryrefslogtreecommitdiff
path: root/dep/django-selectable/tox.ini
blob: c6c4e96e1f5d7af0c09b6e510e902c1b016a403c (plain)
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
[tox]
envlist = py{27,34,35,36}-django{111},py{34,35,36}-django{20,21},py35-django_master,docs

[testenv]
basepython =
    py27: python2.7
    py34: python3.4
    py35: python3.5
    py36: python3.6
deps =
    coverage>=4.0,<4.1
    django111: Django>=1.11,<2.0
    django20: Django>=2.0,<2.1
    django21: Django>=2.1,<2.2
    django_master: https://github.com/django/django/archive/master.tar.gz
    py27: mock
commands = coverage run runtests.py

[testenv:docs]
basepython = python3.5
deps =
    Sphinx
    Django
commands =
    {envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html