blob: 268ae782457b158b5b81aaece333f1121fafb2ab [file] [log] [blame]
beierlmacf83f82021-03-17 08:11:23 -04001#######################################################################################
2# Copyright ETSI Contributors and Others.
tiernob3cda2e2018-10-30 17:26:59 +00003#
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.
beierlmacf83f82021-03-17 08:11:23 -040016#######################################################################################
tiernob3cda2e2018-10-30 17:26:59 +000017
tiernoc0e42e22018-05-11 11:36:10 +020018[tox]
beierlmacf83f82021-03-17 08:11:23 -040019envlist = black, cover, flake8, pylint, safety
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
tiernoc0e42e22018-05-11 11:36:10 +020023
24[testenv]
garciadeblase6d17e62020-07-03 10:40:56 +000025usedevelop = True
Gabriel Cubae7898982023-05-11 01:57:21 -050026basepython = python3.10
beierlmacf83f82021-03-17 08:11:23 -040027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29deps = -r{toxinidir}/requirements.txt
garciadeblasfb1e25f2022-11-18 14:36:22 +010030parallel_show_output = true
garciadeblas92aa6272020-02-19 17:40:44 +010031
beierlmacf83f82021-03-17 08:11:23 -040032#######################################################################################
33[testenv:black]
garciadeblas44521d22024-01-29 18:45:45 +010034deps = black==23.12.1
beierlmacf83f82021-03-17 08:11:23 -040035skip_install = true
garciadeblas92aa6272020-02-19 17:40:44 +010036commands =
preethika.p28b0bf82022-09-23 07:36:28 +000037 black --check --diff osm_lcm/
38 black --check --diff setup.py
tiernoc0e42e22018-05-11 11:36:10 +020039
beierlmacf83f82021-03-17 08:11:23 -040040
41#######################################################################################
42[testenv:cover]
43deps = {[testenv]deps}
44 -r{toxinidir}/requirements-dev.txt
45 -r{toxinidir}/requirements-test.txt
46commands =
47 sh -c 'rm -f nosetests.xml'
48 coverage erase
49 nose2 -C --coverage osm_lcm
50 coverage report --omit='*tests*'
51 coverage html -d ./cover --omit='*tests*'
52 coverage xml -o coverage.xml --omit=*tests*
garciadeblas734c32b2023-03-01 11:39:15 +010053allowlist_externals = sh
beierlmacf83f82021-03-17 08:11:23 -040054
55
56#######################################################################################
tiernoc0e42e22018-05-11 11:36:10 +020057[testenv:flake8]
beierlmacf83f82021-03-17 08:11:23 -040058deps = flake8
59commands =
60 flake8 osm_lcm/ setup.py
tiernoc0e42e22018-05-11 11:36:10 +020061
tiernob3cda2e2018-10-30 17:26:59 +000062
beierlmacf83f82021-03-17 08:11:23 -040063#######################################################################################
64[testenv:pylint]
65deps = {[testenv]deps}
66 -r{toxinidir}/requirements-dev.txt
67 -r{toxinidir}/requirements-test.txt
garciadeblasc03e17e2024-05-22 23:30:12 +020068 pylint==3.1.1
beierlmacf83f82021-03-17 08:11:23 -040069commands =
garciadeblas734c32b2023-03-01 11:39:15 +010070 pylint -E osm_lcm --extension-pkg-allow-list=pydantic # issue with pydantic (https://github.com/pydantic/pydantic/issues/1961)
beierlmacf83f82021-03-17 08:11:23 -040071
72
73#######################################################################################
74[testenv:safety]
75setenv =
76 LC_ALL=C.UTF-8
77 LANG=C.UTF-8
78deps = {[testenv]deps}
79 safety
80commands =
81 - safety check --full-report
82
83
84#######################################################################################
85[testenv:pip-compile]
garciadeblas6a8c7812023-09-29 08:07:00 +020086deps = pip-tools==6.13.0
beierlmd213eba2022-01-18 08:52:27 -050087skip_install = true
garciadeblas734c32b2023-03-01 11:39:15 +010088allowlist_externals = bash
beierlmd213eba2022-01-18 08:52:27 -050089 [
beierlmacf83f82021-03-17 08:11:23 -040090commands =
beierlmd213eba2022-01-18 08:52:27 -050091 - bash -c "for file in requirements*.in ; do \
92 UNSAFE="" ; \
93 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
garciadeblas6a8c7812023-09-29 08:07:00 +020094 pip-compile --resolver=backtracking -rU --no-header $UNSAFE $file ;\
beierlmd213eba2022-01-18 08:52:27 -050095 out=`echo $file | sed 's/.in/.txt/'` ; \
96 sed -i -e '1 e head -16 tox.ini' $out ;\
97 done"
beierlmacf83f82021-03-17 08:11:23 -040098
99
100#######################################################################################
101[testenv:dist]
102deps = {[testenv]deps}
103 -r{toxinidir}/requirements-dist.txt
104
105# In the commands, we copy the requirements.txt to be presented as a source file (.py)
106# so it gets included in the .deb package for others to consume
107commands =
108 sh -c 'cp requirements.txt osm_lcm/requirements.txt'
109 python3 setup.py --command-packages=stdeb.command sdist_dsc
110 sh -c 'cd deb_dist/osm-lcm*/ && dpkg-buildpackage -rfakeroot -uc -us'
111 sh -c 'rm osm_lcm/requirements.txt'
garciadeblas734c32b2023-03-01 11:39:15 +0100112allowlist_externals = sh
beierlmacf83f82021-03-17 08:11:23 -0400113
114#######################################################################################
115[flake8]
116ignore =
117 W291,
118 W293,
119 W503,
120 E123,
121 E125,
122 E226,
123 E241,
124# Temporary until code can be reformatted
125 E121,
126 E122,
127 E203,
128 E303,
129 E501
130 W504
131exclude =
132 .git,
133 __pycache__,
134 .tox,
135max-line-length = 120
136show-source = True
137builtins = _