blob: 34ae106aabc6e29f5a6b5fcf147dd41c1fc351c4 [file] [log] [blame]
# To use tox, see https://tox.readthedocs.io
# Simply pip or conda install tox
# If you use conda, you may also want to install tox-conda
# then run `tox` or `tox -- {pytest args}`
# run in parallel using `tox -p`
[tox]
envlist = py37
[testenv]
usedevelop = true
[testenv:py{36,37,38}]
extras = testing
commands = pytest {posargs}
[testenv:py{36,37,38}-bench-core]
extras = testing
commands = pytest benchmarking/bench_core.py {posargs}
[testenv:py{36,37,38}-bench-packages]
extras = testing,compare
commands = pytest benchmarking/bench_packages.py {posargs}
[testenv:py{36,37,38}-bench-plugins]
extras = testing
commands = pytest benchmarking/bench_plugins.py {posargs}
[testenv:docs-{update,clean}]
extras = rtd
whitelist_externals = rm
setenv =
update: SKIP_APIDOC = true
commands =
clean: rm -rf docs/_build
sphinx-build -nW --keep-going -b {posargs:html} docs/ docs/_build/{posargs:html}