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 32 33 34 35 36 37 38 39 40 41 42 43
|
[tox]
envlist =
py310
py310-{tempfile,pipe}
py39
py39-{tempfile,pipe}
py38
py37
py36
py3-doc
py3-lint
# Workaround for Vagrant
#toxworkdir={toxinidir}/.tox # default
toxworkdir={homedir}/.tox/easyprocess
[testenv]
deps = -rrequirements-test.txt
setenv =
pipe: EASYPROCESS_USE_TEMP_FILES = 0
tempfile: DUMMY = 1
changedir=tests
commands=
{envpython} -m pytest -v .
[testenv:py3-doc]
allowlist_externals=bash
changedir=doc
deps =
-rrequirements-doc.txt
commands=
bash -c "cd ..;./format-code.sh"
{envpython} generate-doc.py --debug
[testenv:py3-lint]
allowlist_externals=bash
changedir=.
deps = -rrequirements-test.txt
commands=
bash -c "./lint.sh"
|