Update IM requirements
[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.10
27 setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29 passenv = HOME
30 deps = -r{toxinidir}/requirements.txt
31 skip_install = true
32 parallel_show_output = true
33
34
35 #######################################################################################
36 [testenv:black]
37 commands = python3 -c 'print("Skipping due to generated code")'
38
39
40 #######################################################################################
41 [testenv:cover]
42 skip_install = false
43 deps = {[testenv]deps}
44 -r{toxinidir}/requirements-test.txt
45 commands =
46 sh -c "patch {toxworkdir}/cover/lib/python3.10/site-packages/pyangbind/lib/yangtypes.py < pyangbind.patch"
47 sh -c 'make clean'
48 sh -c 'make models Q=""'
49 sh -c 'rm -f nosetests.xml'
50 coverage erase
51 nose2 -C --coverage osm_im -s tests
52 coverage report --omit='*tests*'
53 coverage html -d ./cover --omit='*tests*'
54 coverage xml -o coverage.xml --omit=*tests*
55 allowlist_externals = sh
56
57
58 #######################################################################################
59 [testenv:flake8]
60 commands = python3 -c 'print("Skipping due to generated code")'
61
62
63 #######################################################################################
64 [testenv:pylint]
65 commands = python3 -c 'print("Skipping due to generated code")'
66
67
68 #######################################################################################
69 [testenv:safety]
70 setenv =
71 LC_ALL=C.UTF-8
72 LANG=C.UTF-8
73 deps = {[testenv]deps}
74 safety
75 commands =
76 - safety check --full-report
77
78
79 #######################################################################################
80 [testenv:pip-compile]
81 deps = pip-tools==6.13.0
82 skip_install = true
83 allowlist_externals = bash
84 [
85 commands =
86 - bash -c "for file in requirements*.in ; do \
87 UNSAFE="" ; \
88 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
89 pip-compile --resolver=backtracking -rU --no-header $UNSAFE $file ;\
90 out=`echo $file | sed 's/.in/.txt/'` ; \
91 sed -i -e '1 e head -16 tox.ini' $out ;\
92 done"
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 "patch {toxworkdir}/dist/lib/python3.10/site-packages/pyangbind/lib/yangtypes.py < pyangbind.patch"
104 sh -c 'make clean'
105 sh -c 'make Q=""'
106 sh -c 'cp requirements.txt osm_im/requirements.txt'
107 python3 setup.py --command-packages=stdeb.command sdist_dsc
108 sh -c 'cd deb_dist/osm-im*/ && dpkg-buildpackage -rfakeroot -uc -us'
109 sh -c 'rm osm_im/requirements.txt'
110 allowlist_externals = sh
111
112 #######################################################################################
113 [flake8]
114 ignore =
115 W291,
116 W293,
117 E123,
118 E125,
119 E226,
120 E241
121 exclude =
122 .git,
123 __pycache__,
124 .tox,
125 max-line-length = 120
126 show-source = True
127 builtins = _