1[tox]
2envlist = py27, py34, py35, py36, py37, py38, docs, packaging
3
4[testenv]
5commands =
6    nosetests maec
7deps =
8    -rrequirements.txt
9
10[testenv:docs]
11commands =
12    sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs {envtmpdir}/doctest
13    sphinx-build -W -b html -d {envtmpdir}/doctrees docs {envtmpdir}/html
14
15[testenv:packaging]
16deps =
17    readme_renderer
18commands =
19    python setup.py check -r -s
20
21[travis]
22python =
23  2.7: py27, docs, packaging
24  3.4: py34
25  3.5: py35
26  3.6: py36, docs, packaging
27  3.7: py37
28  3.8: py38
29