Bug 1609 fix
[osm/N2VC.git] / tox.ini
1 #######################################################################################
2 # Copyright ETSI Contributors and Others.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13 # implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #######################################################################################
17
18 [tox]
19 envlist = black, cover, flake8, pylint, safety
20
21 [tox:jenkins]
22 toxworkdir = /tmp/.tox
23
24 [testenv]
25 usedevelop = True
26 basepython = python3
27 setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29 deps = -r{toxinidir}/requirements.txt
30
31
32 #######################################################################################
33 [testenv:black]
34 deps = black
35 skip_install = true
36 commands =
37 black --check --diff n2vc/
38 black --check --diff setup.py
39
40
41 #######################################################################################
42 [testenv:cover]
43 deps = {[testenv]deps}
44 -r{toxinidir}/requirements-dev.txt
45 -r{toxinidir}/requirements-test.txt
46 commands =
47 sh -c 'rm -f nosetests.xml'
48 coverage erase
49 nose2 -C --coverage n2vc
50 coverage report --omit='*tests*'
51 coverage html -d ./cover --omit='*tests*'
52 coverage xml -o coverage.xml --omit=*tests*
53 whitelist_externals = sh
54
55
56 #######################################################################################
57 [testenv:flake8]
58 deps = flake8
59 commands =
60 flake8 n2vc/ setup.py
61
62
63 #######################################################################################
64 [testenv:pylint]
65 deps = {[testenv]deps}
66 -r{toxinidir}/requirements-dev.txt
67 -r{toxinidir}/requirements-test.txt
68 pylint
69 commands =
70 pylint -E n2vc
71
72
73 #######################################################################################
74 [testenv:safety]
75 setenv =
76 LC_ALL=C.UTF-8
77 LANG=C.UTF-8
78 deps = {[testenv]deps}
79 safety
80 commands =
81 - safety check --full-report
82
83
84 #######################################################################################
85 [testenv:pip-compile]
86 deps = pip-tools==5.5.0
87 commands =
88 - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\
89 out=`echo $file | sed "s/.in/.txt/"` ; \
90 head -16 tox.ini >> $out ;\
91 done'
92 whitelist_externals = sh
93
94
95 #######################################################################################
96 [testenv:dist]
97 deps = {[testenv]deps}
98 -r{toxinidir}/requirements-dist.txt
99
100 # In the commands, we copy the requirements.txt to be presented as a source file (.py)
101 # so it gets included in the .deb package for others to consume
102 commands =
103 sh -c 'cp requirements.txt n2vc/requirements.txt'
104 python3 setup.py --command-packages=stdeb.command sdist_dsc
105 sh -c 'cd deb_dist/n2vc*/ && dpkg-buildpackage -rfakeroot -uc -us'
106 sh -c 'rm n2vc/requirements.txt'
107 whitelist_externals = sh
108
109 #######################################################################################
110 [flake8]
111 ignore =
112 W291,
113 W293,
114 W503,
115 E123,
116 E125,
117 E203,
118 E226,
119 E241
120 exclude =
121 .git,
122 __pycache__,
123 .tox,
124 max-line-length = 120
125 show-source = True
126 builtins = _