blob: e763ca239d5f15f9cf71b6c4fc0fb817d930be62 [file] [log] [blame]
beierlmb483b922021-02-11 14:57:14 -05001#######################################################################################
2# Copyright ETSI Contributors and Others.
tierno87858ca2018-10-08 16:30:15 +02003#
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.
beierlmb483b922021-02-11 14:57:14 -050016#######################################################################################
tierno87858ca2018-10-08 16:30:15 +020017
tierno5c012612018-04-19 16:01:59 +020018[tox]
beierlmb483b922021-02-11 14:57:14 -050019envlist = black, cover, flake8, pylint, safety
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
garciadeblasa8747992020-07-03 10:59:34 +000023
24[testenv]
25usedevelop = True
beierlmb0291ff2022-01-13 11:37:31 -050026basepython = python3.8
beierlmb483b922021-02-11 14:57:14 -050027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29deps = -r{toxinidir}/requirements.txt
garciadeblasa8747992020-07-03 10:59:34 +000030
garciadeblasa8747992020-07-03 10:59:34 +000031
beierlmb483b922021-02-11 14:57:14 -050032#######################################################################################
33[testenv:black]
34deps = black
35skip_install = true
garciadeblasa8747992020-07-03 10:59:34 +000036commands =
garciadeblas2644b762021-03-24 09:21:01 +010037 black --check --diff osm_common/
38 black --check --diff setup.py
tierno5c012612018-04-19 16:01:59 +020039
beierlmb483b922021-02-11 14:57:14 -050040#######################################################################################
41[testenv:cover]
42deps = {[testenv]deps}
43 -r{toxinidir}/requirements-test.txt
44commands =
45 sh -c 'rm -f nosetests.xml'
46 coverage erase
47 nose2 -C --coverage osm_common -s osm_common/tests
48 coverage report --omit='*tests*'
49 coverage html -d ./cover --omit='*tests*'
50 coverage xml -o coverage.xml --omit=*tests*
51whitelist_externals = sh
tierno5c012612018-04-19 16:01:59 +020052
beierlmb483b922021-02-11 14:57:14 -050053#######################################################################################
tierno5c012612018-04-19 16:01:59 +020054[testenv:flake8]
aticig3dd0db62022-03-04 19:35:45 +030055deps =
56 flake8
57 flake8-import-order
tierno5c012612018-04-19 16:01:59 +020058commands =
beierlmb483b922021-02-11 14:57:14 -050059 flake8 osm_common/ setup.py
tierno5c012612018-04-19 16:01:59 +020060
beierlmb483b922021-02-11 14:57:14 -050061#######################################################################################
62[testenv:pylint]
63deps = {[testenv]deps}
64 -r{toxinidir}/requirements-test.txt
65 pylint
66commands =
garciadeblas2644b762021-03-24 09:21:01 +010067 pylint -E osm_common
tierno136f2952018-10-19 13:01:03 +020068
beierlmb483b922021-02-11 14:57:14 -050069#######################################################################################
70[testenv:safety]
71setenv =
72 LC_ALL=C.UTF-8
73 LANG=C.UTF-8
74deps = {[testenv]deps}
75 safety
76commands =
77 - safety check --full-report
garciadeblasa8747992020-07-03 10:59:34 +000078
beierlmb483b922021-02-11 14:57:14 -050079#######################################################################################
80[testenv:pip-compile]
beierlmb0291ff2022-01-13 11:37:31 -050081deps = pip-tools==6.4.0
82skip_install = true
83whitelist_externals = bash
84 [
beierlmb483b922021-02-11 14:57:14 -050085commands =
beierlmb0291ff2022-01-13 11:37:31 -050086 - bash -c "for file in requirements*.in ; do \
87 UNSAFE="" ; \
88 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
89 pip-compile -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"
beierlmb483b922021-02-11 14:57:14 -050093
94#######################################################################################
95[testenv:dist]
96deps = {[testenv]deps}
97 -r{toxinidir}/requirements-dist.txt
98
99# In the commands, we copy the requirements.txt to be presented as a source file (.py)
100# so it gets included in the .deb package for others to consume
101commands =
102 sh -c 'cp requirements.txt osm_common/requirements.txt'
103 python3 setup.py --command-packages=stdeb.command sdist_dsc
104 sh -c 'cd deb_dist/osm-common*/ && dpkg-buildpackage -rfakeroot -uc -us'
105 sh -c 'rm osm_common/requirements.txt'
106whitelist_externals = sh
107
108#######################################################################################
aticig3dd0db62022-03-04 19:35:45 +0300109[testenv:release_notes]
110deps = reno
111skip_install = true
112whitelist_externals = bash
113commands =
114 reno new {posargs:new_feature}
115 bash -c "sed -i -e '1 e head -16 tox.ini' releasenotes/notes/{posargs:new_feature}*.yaml"
116
117#######################################################################################
beierlmb483b922021-02-11 14:57:14 -0500118[flake8]
119ignore =
120 W291,
121 W293,
garciadeblas2644b762021-03-24 09:21:01 +0100122 W503,
beierlmb483b922021-02-11 14:57:14 -0500123 E123,
124 E125,
garciadeblas2644b762021-03-24 09:21:01 +0100125 E203,
beierlmb483b922021-02-11 14:57:14 -0500126 E226,
127 E241
128exclude =
129 .git,
130 __pycache__,
131 .tox,
132max-line-length = 120
133show-source = True
134builtins = _
aticig3dd0db62022-03-04 19:35:45 +0300135import-order-style = google