summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 341b3ae404d13de32d61741566214346523da7e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[tox]
envlist=py3

[testenv]
deps =
  pytz
  pytest
commands=
  {envpython} -m pytest test {posargs}

[testenv:docs]
basepython = python2
deps =
  -r docs/requirements-doc.txt
commands=
  {envpython} -m sphinx -b html {toxinidir}/docs {toxinidir}/docs/_build/html {posargs}