9b78d42e54
Listed below are the errors which were fixed as well as the actions [error] trailing spaces (trailing-spaces) --> delete spaces [error] too many blank lines (3 > 2) --> delete blank line [error] too few spaces after comma (commas) --> add space after comma [error] too many spaces inside brackets --> delete extra spaces [error] wrong indentation: expected XX but found XX (indentation) --> delete/add spaces to indente [error] line too long (97 > 80 characters) (line-length) --> change the line max length to 200 cut the too long lines to 2 or 3 (by using '|-') [error] duplication of key "XXX" in mapping (key-duplicates) --> delete the duplication [warning] missing starting space in comment (comments) --> add blank after '#' [warning] truthy value should be true or false (truthy) --> lower case "False"/"True" to false/true Listed below are test cases done which run one controller and one compute in KVMs Test-Install ---- success Test_create_instance ---- success Now linters errors under stx-config is clear. Weee!! Related commit: https://review.openstack.org/#/c/600473/ Story: 2003360 Task: 24411 Change-Id: Idc3c9304172be52c5d2fb2cbd862527066b72ecf Signed-off-by: SidneyAn <ran1.an@intel.com>
49 lines
1.2 KiB
INI
49 lines
1.2 KiB
INI
[tox]
|
|
envlist = linters
|
|
minversion = 2.3
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
basepython = python3
|
|
install_command = pip install -U {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
OS_STDOUT_CAPTURE=1
|
|
OS_STDERR_CAPTURE=1
|
|
OS_TEST_TIMEOUT=60
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
|
|
[testenv:linters]
|
|
whitelist_externals = bash
|
|
commands =
|
|
bash -c "find {toxinidir} \
|
|
-not \( -type d -name .?\* -prune \) \
|
|
-type f \
|
|
-not -name \*~ \
|
|
-not -name \*.md \
|
|
-name \*.sh \
|
|
-print0 | xargs -0 bashate -v -e E* \
|
|
-i E006,E010"
|
|
|
|
bash -c "find {toxinidir} \
|
|
\( -name .tox -prune \) \
|
|
-o -type f -name '*.yaml' \
|
|
-print0 | xargs -0 yamllint -f parsable \
|
|
-c {toxinidir}/.yamllint"
|
|
|
|
[testenv:pep8]
|
|
usedevelop = False
|
|
skip_install = True
|
|
deps =
|
|
pep8
|
|
commands =
|
|
pep8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:flake8]
|
|
description = Dummy environment to allow flake8 to be run in subdir tox
|
|
|
|
[testenv:pylint]
|
|
description = Dummy environment to allow pylint to be run in subdir tox
|