blob: 10a738ccf79d159740734cf5879c5709a62735d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[tox]
envlist =
py26, py27, py32, py33, py34, py35, pypy, pypy3, docs
[testenv]
deps =
mock
pytest
commands =
py.test []
python virtualenv.py {envtmpdir}/test-venv-01
[testenv:docs]
deps =
sphinx
readme
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
python setup.py check -m -r -s
|