blob: 6c750c9ce211f76f5f4956e390fd5f799526f598 [file] [log] [blame]
garciadeblas66834562022-11-10 14:07:04 +01001#######################################################################################
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]
19envlist = black, flake8
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
23setenv = XDG_CACHE_HOME=/tmp/.cache
24
25[testenv]
26usedevelop = True
27basepython = python3
28setenv = VIRTUAL_ENV={envdir}
29 PYTHONDONTWRITEBYTECODE = 1
30deps = -r{toxinidir}/requirements.txt
31parallel_show_output = true
32
33
34#######################################################################################
35[testenv:black]
36deps = black
37skip_install = true
38commands =
Mark Beierl9ed3fa42023-03-01 18:51:34 +000039 black --check --diff src setup.py
40 black --check --diff osm_webhook_translator
garciadeblas66834562022-11-10 14:07:04 +010041
42
43#######################################################################################
44[testenv:cover]
45deps = {[testenv]deps}
46 -r{toxinidir}/requirements-dev.txt
47 -r{toxinidir}/requirements-test.txt
Mark Beierl9ed3fa42023-03-01 18:51:34 +000048allowlist_externals = sh
garciadeblas66834562022-11-10 14:07:04 +010049commands =
50 sh -c 'rm -f nosetests.xml'
51 coverage erase
52 nose2 -C --coverage src -s src
Mark Beierl9ed3fa42023-03-01 18:51:34 +000053 sh -c 'mv .coverage .coverage_ngsa'
54 nose2 -C --coverage osm_webhook_translator -s osm_webhook_translator
55 sh -c 'mv .coverage .coverage_webhook_translator'
garciadeblas66834562022-11-10 14:07:04 +010056 coverage report --omit='*tests*'
57 coverage html -d ./cover --omit='*tests*'
58 coverage xml -o coverage.xml --omit='*tests*'
59
60
61#######################################################################################
62[testenv:flake8]
garciadeblas998ff732022-11-10 14:19:44 +010063deps = flake8==5.0.4
garciadeblas66834562022-11-10 14:07:04 +010064 flake8-import-order
garciadeblas66834562022-11-10 14:07:04 +010065commands =
Mark Beierl9ed3fa42023-03-01 18:51:34 +000066 flake8 src setup.py
67 flake8 osm_webhook_translator
garciadeblas66834562022-11-10 14:07:04 +010068
69
70#######################################################################################
71[testenv:pylint]
72deps = {[testenv]deps}
73 -r{toxinidir}/requirements-dev.txt
74 -r{toxinidir}/requirements-test.txt
75 pylint
76skip_install = true
77commands =
78 pylint -E src
Mark Beierl9ed3fa42023-03-01 18:51:34 +000079 pylint -E osm_webhook_translator
garciadeblas66834562022-11-10 14:07:04 +010080
81
82#######################################################################################
83[testenv:safety]
84setenv =
85 LC_ALL=C.UTF-8
86 LANG=C.UTF-8
87deps = {[testenv]deps}
88 safety
89commands =
90 - safety check --full-report
91
92
93#######################################################################################
94[testenv:pip-compile]
95deps = pip-tools==6.6.2
96skip_install = true
Mark Beierl9ed3fa42023-03-01 18:51:34 +000097allowlist_externals =
garciadeblas66834562022-11-10 14:07:04 +010098 bash
99 [
100commands =
101 bash -c "for file in requirements*.in ; do \
102 UNSAFE="" ; \
103 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
104 pip-compile -rU --no-header $UNSAFE $file ;\
105 out=`echo $file | sed 's/.in/.txt/'` ; \
106 sed -i -e '1 e head -16 tox.ini' $out ;\
107 done"
Mark Beierl9ed3fa42023-03-01 18:51:34 +0000108 bash -c "for file in osm_webhook_translator/requirements*.in ; do \
109 UNSAFE="" ; \
110 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
111 pip-compile -rU --no-header $UNSAFE $file ;\
112 out=`echo $file | sed 's/.in/.txt/'` ; \
113 sed -i -e '1 e head -16 tox.ini' $out ;\
114 done"
garciadeblas66834562022-11-10 14:07:04 +0100115
116
117#######################################################################################
Mark Beierl9ed3fa42023-03-01 18:51:34 +0000118[testenv:dist_ng_sa]
garciadeblas8d41d562022-11-24 14:42:35 +0100119deps = {[testenv]deps}
120 -r{toxinidir}/requirements-dist.txt
Mark Beierl9ed3fa42023-03-01 18:51:34 +0000121allowlist_externals = sh
garciadeblas8d41d562022-11-24 14:42:35 +0100122commands =
123 sh -c 'cp requirements.txt src/osm_ngsa/requirements.txt'
124 sh -c 'cp README.rst src/osm_ngsa/README.rst'
125 python3 setup.py --command-packages=stdeb.command sdist_dsc
126 sh -c 'cd deb_dist/osm-ngsa*/ && dpkg-buildpackage -rfakeroot -uc -us'
127 sh -c 'rm src/osm_ngsa/requirements.txt'
128 sh -c 'rm src/osm_ngsa/README.rst'
Mark Beierl9ed3fa42023-03-01 18:51:34 +0000129
130
131#######################################################################################
132[testenv:dist_webhook_translator]
133deps = -r{toxinidir}/osm_webhook_translator/requirements.txt
134 -r{toxinidir}/osm_webhook_translator/requirements-dist.txt
135allowlist_externals = sh
136commands =
137 sh -c 'cp src/osm_ngsa/_version.py osm_webhook_translator/src/osm_webhook_translator/_version.py'
138 sh -c 'cd osm_webhook_translator && cp requirements.txt src/osm_webhook_translator/requirements.txt'
139 sh -c 'cd osm_webhook_translator && cp README.rst src/osm_webhook_translator/README.rst'
140 sh -c 'cd osm_webhook_translator && python3 setup.py --command-packages=stdeb.command sdist_dsc'
141 sh -c 'cd osm_webhook_translator/deb_dist/osm-webhook-translator*/ && dpkg-buildpackage -rfakeroot -uc -us'
142 sh -c 'rm osm_webhook_translator/src/osm_webhook_translator/requirements.txt'
143 sh -c 'rm osm_webhook_translator/src/osm_webhook_translator/README.rst'
garciadeblas8d41d562022-11-24 14:42:35 +0100144
145
146#######################################################################################
garciadeblas66834562022-11-10 14:07:04 +0100147[flake8]
148ignore =
149 W291,
150 W293,
151 W503,
152 W605,
153 E123,
154 E125,
155 E203,
156 E226,
157 E241,
158 E501,
159exclude =
160 .git,
161 __pycache__,
162 .tox,
163max-line-length = 120
164show-source = True
165builtins = _
166import-order-style = google