
This is now a Python 3-only package. We must temporarily cap Sphinx at 3.x or lower to get the build passing, but this can be addressed in a follow-up shortly. Change-Id: I1923d1dcd92cce349211dee5b01a3c365b151ead Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
42 lines
1.2 KiB
INI
42 lines
1.2 KiB
INI
[tox]
|
|
minversion = 3.1
|
|
envlist = py36,py37,py38,py39,pypy,coverage,pep8
|
|
ignore_basepython_conflict = true
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv =
|
|
COVERAGE_FILE=.coverage.{envname}
|
|
deps =
|
|
-r test-requirements.txt
|
|
commands =
|
|
{envbindir}/coverage run {envbindir}/nosetests --nologcapture --with-xunit --xunit-file nosetests-{envname}.xml wsme/tests tests/pecantest tests/test_sphinxext.py tests/test_flask.py --verbose {posargs}
|
|
{envbindir}/coverage report --show-missing --include="wsme/*.py","wsme/rest/*.py","wsmeext/*.py" --omit "wsme/tests/*"
|
|
|
|
[testenv:coverage]
|
|
setenv =
|
|
COVERAGE_FILE=.coverage
|
|
commands =
|
|
{envbindir}/coverage erase
|
|
{envbindir}/coverage combine
|
|
{envbindir}/coverage xml --include="wsme/*.py","wsme/rest/*.py","wsmeext/*.py" --omit "wsme/tests/*"
|
|
{envbindir}/coverage report --show-missing --include="wsme/*.py","wsme/rest/*.py","wsmeext/*.py" --omit "wsme/tests/*"
|
|
|
|
[testenv:docs]
|
|
whitelist_externals =
|
|
rm
|
|
deps =
|
|
-r doc/requirements.txt
|
|
commands =
|
|
rm -fr doc/build
|
|
sphinx-build -W -b html doc/source doc/build/html
|
|
|
|
[testenv:pep8]
|
|
deps = flake8
|
|
commands =
|
|
flake8 wsme wsmeext setup.py
|
|
|
|
[testenv:venv]
|
|
usedevelop = True
|
|
commands = {posargs}
|