forked from marshmallow-code/marshmallow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
31 lines (24 loc) · 729 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tox]
envlist = lint,py35,py36,py37,py38,py39,docs
[testenv]
extras = tests
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/marshmallow --delay 2
[testenv:watch-readme]
deps = restview
skip_install = true
commands = restview README.rst
[testenv:benchmark]
usedevelop = true
commands = python performance/benchmark.py --iterations=100 --repeat=3