Bug 1844: LTS Support
[osm/IM.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.8
27 setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29 passenv = HOME
30 deps = -r{toxinidir}/requirements.txt
31 skip_install = true
32
33
34 #######################################################################################
35 [testenv:black]
36 commands = python3 -c 'print("Skipping due to generated code")'
37
38
39 #######################################################################################
40 [testenv:cover]
41 skip_install = false
42 deps = {[testenv]deps}
43 -r{toxinidir}/requirements-test.txt
44 commands =
45 sh -c 'make clean'
46 sh -c 'make models Q=""'
47 sh -c 'rm -f nosetests.xml'
48 coverage erase
49 nose2 -C --coverage osm_im -s tests
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 commands = python3 -c 'print("Skipping due to generated code")'
59
60
61 #######################################################################################
62 [testenv:pylint]
63 commands = python3 -c 'print("Skipping due to generated code")'
64
65
66 #######################################################################################
67 [testenv:safety]
68 setenv =
69 LC_ALL=C.UTF-8
70 LANG=C.UTF-8
71 deps = {[testenv]deps}
72 safety
73 commands =
74 - safety check --full-report
75
76
77 #######################################################################################
78 [testenv:pip-compile]
79 deps = pip-tools==6.4.0
80 skip_install = true
81 whitelist_externals = bash
82 [
83 commands =
84 - bash -c "for file in requirements*.in ; do \
85 UNSAFE="" ; \
86 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
87 pip-compile -rU --no-header $UNSAFE $file ;\
88 out=`echo $file | sed 's/.in/.txt/'` ; \
89 sed -i -e '1 e head -16 tox.ini' $out ;\
90 done"
91
92
93 #######################################################################################
94 [testenv:dist]
95 deps = {[testenv]deps}
96 -r{toxinidir}/requirements-dist.txt
97
98 # In the commands, we copy the requirements.txt to be presented as a source file (.py)
99 # so it gets included in the .deb package for others to consume
100 commands =
101 sh -c 'make clean'
102 sh -c 'make Q=""'
103 sh -c 'cp requirements.txt osm_im/requirements.txt'
104 python3 setup.py --command-packages=stdeb.command sdist_dsc
105 sh -c 'cd deb_dist/osm-im*/ && dpkg-buildpackage -rfakeroot -uc -us'
106 sh -c 'rm osm_im/requirements.txt'
107 whitelist_externals = sh
108
109 #######################################################################################
110 [flake8]
111 ignore =
112 W291,
113 W293,
114 E123,
115 E125,
116 E226,
117 E241
118 exclude =
119 .git,
120 __pycache__,
121 .tox,
122 max-line-length = 120
123 show-source = True
124 builtins = _