blob: 7363f7dfebb0e30744244a0efbf98f65dcec3214 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tox]
envlist = docs,py35,py36,py37,py38
[pytest]
testpaths = tests
[testenv]
passenv = CI TRAVIS TRAVIS_* APPVEYOR*
setenv = PYTHONPATH={toxinidir}
extras = test
commands =
py.test {posargs} --cov --junitxml=junit/test-results.xml
codecov
[testenv:docs]
basepython = python3.5
deps =
sphinx
sphinx-rtd-theme
changedir = docs
commands = sphinx-build -a -W -T -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
|