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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
[tox]
envlist = docs,pep8,pylint,yamllint,ansiblelint,bashate,bandit,py27,py37,cover,perm
[testenv]
usedevelop = True
deps =
-c{toxinidir}/upper-constraints.txt
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
install_command = pip install {opts} {packages}
commands = nosetests --with-xunit \
--with-coverage \
--cover-tests \
--cover-package=functest \
--cover-xml \
--cover-html \
functest/tests/unit
[testenv:docs]
basepython = python3.7
commands =
doc8 \
--ignore-path api/build \
--ignore-path docs/build \
--ignore-path docs/_build \
api \
docs
sphinx-build -W -b html api/ api/build
sphinx-build -W -n -b html docs docs/build/html
sphinx-build -W -n -b linkcheck docs docs/build/linkcheck
sphinx-build -W -b spelling -Dextensions=sphinxcontrib.spelling docs docs/build/spellcheck
[testenv:pep8]
basepython = python3.7
commands = flake8
[testenv:pylint]
basepython = python3.7
commands =
pylint \
--ignore-imports=y --min-similarity-lines=10 \
--disable=locally-disabled functest
[testenv:yamllint]
basepython = python3.7
files =
.travis.yml
docker
functest/ci
functest/opnfv_tests/openstack/rally/blacklist.yaml
functest/opnfv_tests/openstack/rally/rally_jobs.yaml
functest/opnfv_tests/openstack/tempest/custom_tests/blacklist.yaml
functest/opnfv_tests/openstack/tempest/custom_tests/tempest_conf.yaml
functest/opnfv_tests/vnf
commands =
yamllint -s {[testenv:yamllint]files}
[testenv:ansiblelint]
basepython = python3.7
commands =
ansible-lint ansible/site.yml
[testenv:py37]
commands = nosetests functest/tests/unit
[testenv:bashate]
basepython = python3.7
files =
functest/opnfv_tests/openstack/cinder/write_data.sh
functest/opnfv_tests/openstack/cinder/read_data.sh
functest/ci/add_proxy.sh
functest/ci/convert_images.sh
functest/ci/download_images.sh
build.sh
commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}
[testenv:bandit]
basepython = python3.7
commands = bandit -r functest -x tests -n 5 -ll -s B601,B602
[testenv:cover]
basepython = python3.7
dirs =
functest/tests/unit/odl
functest/tests/unit/openstack/vping
functest/tests/unit/openstack/cinder
commands = nosetests --with-coverage --cover-tests \
--cover-package functest.opnfv_tests.sdn.odl \
--cover-package functest.opnfv_tests.openstack.vping.vping_ssh \
--cover-package functest.opnfv_tests.openstack.cinder.cinder_test \
--cover-package functest.tests.unit \
--cover-min-percentage 100 {[testenv:cover]dirs}
[testenv:perm]
basepython = python3.7
whitelist_externals = bash
path=. -not -path './.tox/*' -not -path './.git/*' -not -path './docs/com/pres/reveal.js/*'
commands =
bash -c "\
find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
-exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
bash -c "\
find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"
|