e2789e8a9d
OpenStack is dropping the py2.7 support in ussuri cycle. monasca-api is ready with python 3 and ok to drop the python 2.7 support. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Depends-On: https://review.opendev.org/#/c/693631/ Change-Id: I5daa9bb079d0373d0e1379d20e98dd5c0880d312
170 lines
4.6 KiB
INI
170 lines
4.6 KiB
INI
[tox]
|
|
envlist = py37,pep8,cover
|
|
minversion = 2.7
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
setenv =
|
|
VIRTUAL_ENV={envdir}
|
|
OS_TEST_PATH=monasca_api/tests
|
|
passenv = *_proxy
|
|
*_PROXY
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
deps =
|
|
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
.[influxdb,cassandra]
|
|
whitelist_externals = bash
|
|
find
|
|
rm
|
|
commands =
|
|
find . -type f -name "*.pyc" -delete
|
|
stestr run {posargs}
|
|
|
|
[testenv:cover]
|
|
commands =
|
|
coverage erase
|
|
python setup.py test --coverage --testr-args='{posargs}' \
|
|
--coverage-package-name=monasca_api --omit=monasca_api/hacking/*
|
|
coverage report
|
|
|
|
[testenv:debug]
|
|
commands =
|
|
oslo_debug_helper -t ./monasca_api/tests {posargs}
|
|
|
|
[testenv:flake8]
|
|
skip_install = True
|
|
usedevelop = False
|
|
commands =
|
|
flake8 monasca_api
|
|
|
|
[testenv:bandit]
|
|
skip_install = True
|
|
usedevelop = False
|
|
commands =
|
|
# B101(assert_ussed) - API uses asserts because of performance reasons
|
|
# B303 - Fingerprint class uses SHA1 to map fingerprints to alembic revisions.
|
|
bandit -r monasca_api -n5 -s B101,B303 -x monasca_api/tests
|
|
|
|
[testenv:bashate]
|
|
skip_install = True
|
|
usedevelop = False
|
|
commands = bash {toxinidir}/tools/bashate.sh
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
{[testenv:flake8]commands}
|
|
{[testenv:bandit]commands}
|
|
{[testenv:bashate]commands}
|
|
{[testenv:checkniceness]commands}
|
|
|
|
[testenv:docs]
|
|
description = Builds api-ref, api-guide, releasenotes and devdocs
|
|
commands =
|
|
{[testenv:devdocs]commands}
|
|
{[testenv:api-ref]commands}
|
|
{[testenv:releasenotes]commands}
|
|
|
|
[testenv:pdf-docs]
|
|
envdir = {toxworkdir}/docs
|
|
whitelist_externals =
|
|
make
|
|
rm
|
|
commands =
|
|
rm -rf doc/build/pdf
|
|
sphinx-build -W -b latex doc/source doc/build/pdf
|
|
make -C doc/build/pdf
|
|
|
|
[testenv:api-ref]
|
|
description = Called from CI scripts to test and publish the API Ref
|
|
commands =
|
|
rm -rf api-ref/build
|
|
{[testenv:checkjson]commands}
|
|
sphinx-build -W -b html -d api-ref/build/doctrees \
|
|
api-ref/source api-ref/build/html
|
|
|
|
[testenv:releasenotes]
|
|
description = Called from CI script to test and publish the Release Notes
|
|
commands =
|
|
rm -rf releasenotes/build
|
|
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html \
|
|
releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:devdocs]
|
|
description = Builds developer documentation
|
|
commands =
|
|
rm -rf doc/build doc/source/contributor/api
|
|
{[testenv:checkjson]commands}
|
|
python setup.py build_sphinx
|
|
|
|
[testenv:checkniceness]
|
|
skip_install = True
|
|
usedevelop = False
|
|
description = Validates (pep-like) documenation
|
|
commands =
|
|
rm -rf {toxinidir}/doc/source/contributor/api {toxinidir}/doc/build \
|
|
{toxinidir}/api-ref/build {toxinidir}/releasenotes/build
|
|
doc8 --file-encoding utf-8 {toxinidir}/doc
|
|
doc8 --file-encoding utf-8 {toxinidir}/api-ref
|
|
doc8 --file-encoding utf-8 {toxinidir}/releasenotes
|
|
|
|
[testenv:checkjson]
|
|
description = Validates all json samples inside doc folder
|
|
deps =
|
|
skip_install = True
|
|
usedevelop = False
|
|
whitelist_externals =
|
|
python
|
|
bash
|
|
commands =
|
|
bash -c "! find doc/ -type f -name *.json | xargs grep -U -n $'\r'"
|
|
bash -c '! find doc/ -type f -name *.json | \
|
|
xargs -t -n1 python -m json.tool 2>&1 > /dev/null | grep -B1 -v ^python'
|
|
|
|
[testenv:genconfig]
|
|
description = Generates sample configuration file for monasca-api
|
|
commands = oslo-config-generator --config-file=config-generator/monasca-api.conf
|
|
|
|
[testenv:genpolicy]
|
|
description = Generates sample policy.json file for monasca-api
|
|
commands = oslopolicy-sample-generator --config-file=config-generator/policy.conf
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:bindep]
|
|
deps = bindep
|
|
commands = bindep test
|
|
|
|
[flake8]
|
|
# TODO: ignored checks should be enabled in the future
|
|
# H201 no 'except:' at least use 'except Exception:'
|
|
# H302 import only modules
|
|
# H405 multi line docstring summary not separated with an empty line
|
|
ignore = F821,H201,H302,H405
|
|
# H106: Don't put vim configuration in source files
|
|
# H203: Use assertIs(Not)None to check for None
|
|
# H204: Use assert(Not)Equal to check for equality.
|
|
# H205: Use assert(Greater|Less)(Equal) for comparison.
|
|
enable-extensions=H106,H203,H204,H205
|
|
max-complexity = 50
|
|
max-line-length = 100
|
|
builtins = _
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build
|
|
show-source = True
|
|
|
|
[hacking]
|
|
local-check-factory = monasca_api.hacking.checks.factory
|
|
import_exceptions =
|
|
six.moves
|
|
|
|
[testenv:lower-constraints]
|
|
deps =
|
|
-c{toxinidir}/lower-constraints.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
-r{toxinidir}/requirements.txt
|
|
.[influxdb,cassandra]
|