1# Tox (http://tox.testrun.org/) is a tool for running tests
2# in multiple virtualenvs. This configuration file will run the
3# test suite on all supported python versions. To use it, "pip install tox"
4# and then run "tox" from this directory.
5
6[tox]
7skipsdist = True
8envlist = py34, py35, py36, py37, pycodestyle, doc
9
10[testenv]
11commands = pytest
12deps = -r{toxinidir}/../requirements.txt
13
14[testenv:pycodestyle]
15commands=pycodestyle
16deps=pycodestyle
17
18[testenv:doc]
19deps =
20  -r {toxinidir}/../requirements.txt
21commands=sphinx-build -b html ../docs ../docs/_build -W
22