Codebase list apispec / e7740fa8-4002-4b2b-8950-712dc106d7cf/upstream tox.ini
e7740fa8-4002-4b2b-8950-712dc106d7cf/upstream

Tree @e7740fa8-4002-4b2b-8950-712dc106d7cf/upstream (Download .tar.gz)

tox.ini @e7740fa8-4002-4b2b-8950-712dc106d7cf/upstreamraw · history · blame

[tox]
envlist=
    lint
    py{36,37,38,39}-marshmallow3
    py38-marshmallowdev
    docs

[testenv]
extras = tests
deps =
    marshmallow3: marshmallow>=3.0.0,<4.0.0
    marshmallowdev: https://github.com/marshmallow-code/marshmallow/archive/dev.tar.gz
commands = pytest {posargs}

[testenv:lint]
deps = pre-commit~=2.4
skip_install = true
commands = pre-commit run --all-files --show-diff-on-failure

[testenv:docs]
extras = docs
commands = sphinx-build docs/ docs/_build {posargs}

; Below tasks are for development only (not run in CI)

[testenv:watch-docs]
deps = sphinx-autobuild
extras = docs
commands = sphinx-autobuild --open-browser docs/ docs/_build {posargs} --watch src/apispec --delay 2

[testenv:watch-readme]
deps = restview
skip_install = true
commands = restview README.rst