blob: 8c89a9d646c04d76a07c9f0bc86196abbb9088ab [file] [log] [blame]
beierlm4335f992021-03-24 09:26:06 -04001#######################################################################################
2# Copyright ETSI Contributors and Others.
Felipe Vicensb7463a42019-10-25 16:42:41 +02003#
beierlm4335f992021-03-24 09:26:06 -04004# 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
garciadeblas09fa3d42019-10-08 18:30:46 +02007#
beierlm4335f992021-03-24 09:26:06 -04008# http://www.apache.org/licenses/LICENSE-2.0
garciadeblas09fa3d42019-10-08 18:30:46 +02009#
beierlm4335f992021-03-24 09:26:06 -040010# 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
Mike Marchettieeb2c002017-05-25 11:34:25 -040018[tox]
beierlm4335f992021-03-24 09:26:06 -040019envlist = black, cover, flake8, pylint, safety
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
Mike Marchettieeb2c002017-05-25 11:34:25 -040023
24[testenv]
beierlm4335f992021-03-24 09:26:06 -040025usedevelop = True
garciadeblas3f3faa32023-05-10 18:03:23 +020026basepython = python3.10
beierlm4335f992021-03-24 09:26:06 -040027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29deps = -r{toxinidir}/requirements.txt
30parallel_show_output = true
31
32#######################################################################################
33[testenv:black]
garciadeblas545da4c2024-01-29 16:28:37 +010034deps = black==24.1.1
beierlm4335f992021-03-24 09:26:06 -040035skip_install = true
Mike Marchettieeb2c002017-05-25 11:34:25 -040036commands =
garciadeblas20182772022-07-04 08:51:14 +020037 black --check --diff osmclient/
peustermbe960962018-06-14 21:32:55 +020038
beierlm4335f992021-03-24 09:26:06 -040039
40#######################################################################################
41[testenv:cover]
42deps = {[testenv]deps}
43 -r{toxinidir}/requirements-dev.txt
44 -r{toxinidir}/requirements-test.txt
45commands =
46 sh -c 'rm -f nosetests.xml'
47 coverage erase
48 nose2 -C --coverage osmclient
49 coverage report --omit='*tests*'
50 coverage html -d ./cover --omit='*tests*'
51 coverage xml -o coverage.xml --omit=*tests*
garciadeblas845f3212023-02-24 15:34:25 +010052allowlist_externals = sh
beierlm4335f992021-03-24 09:26:06 -040053
54
55#######################################################################################
56[testenv:flake8]
garciadeblas545da4c2024-01-29 16:28:37 +010057deps = flake8==7.0.0
beierlm4335f992021-03-24 09:26:06 -040058commands =
59 flake8 osmclient/ setup.py
60
61
62#######################################################################################
63[testenv:pylint]
64deps = {[testenv]deps}
65 -r{toxinidir}/requirements-dev.txt
66 -r{toxinidir}/requirements-test.txt
garciadeblas933b0ab2024-05-22 23:47:28 +020067 pylint==3.2.2
beierlm4335f992021-03-24 09:26:06 -040068commands =
almagia0046a312023-06-22 16:24:43 +020069 pylint -E osmclient/
beierlm4335f992021-03-24 09:26:06 -040070
71
72#######################################################################################
73[testenv:safety]
74setenv =
75 LC_ALL=C.UTF-8
76 LANG=C.UTF-8
77deps = {[testenv]deps}
78 safety
79commands =
80 - safety check --full-report
81
82
83#######################################################################################
84[testenv:pip-compile]
garciadeblas3f3faa32023-05-10 18:03:23 +020085deps = pip-tools==6.13.0
beierlmd13d5992022-01-13 13:08:57 -050086skip_install = true
garciadeblas845f3212023-02-24 15:34:25 +010087allowlist_externals = bash
beierlmd13d5992022-01-13 13:08:57 -050088 [
beierlm4335f992021-03-24 09:26:06 -040089commands =
beierlmd13d5992022-01-13 13:08:57 -050090 - bash -c "for file in requirements*.in ; do \
91 UNSAFE="" ; \
92 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
garciadeblas3f3faa32023-05-10 18:03:23 +020093 pip-compile --resolver=backtracking -rU --no-header $UNSAFE $file ;\
beierlmd13d5992022-01-13 13:08:57 -050094 out=`echo $file | sed 's/.in/.txt/'` ; \
95 sed -i -e '1 e head -16 tox.ini' $out ;\
96 done"
beierlm4335f992021-03-24 09:26:06 -040097
98
99#######################################################################################
100[testenv:dist]
101deps = {[testenv]deps}
102 -r{toxinidir}/requirements-dist.txt
103
104# In the commands, we copy the requirements.txt to be presented as a source file (.py)
105# so it gets included in the .deb package for others to consume
106commands =
107 sh -c 'cp requirements.txt osmclient/requirements.txt'
108 python3 setup.py --command-packages=stdeb.command sdist_dsc
109 sh -c 'cd deb_dist/osmclient*/ && dpkg-buildpackage -rfakeroot -uc -us'
110 sh -c 'rm osmclient/requirements.txt'
garciadeblas845f3212023-02-24 15:34:25 +0100111allowlist_externals = sh
beierlm4335f992021-03-24 09:26:06 -0400112
113#######################################################################################
114[flake8]
115ignore =
116 W291,
117 W293,
118 W503,
119 E123,
120 E125,
121 E226,
bravofcca4acd2021-10-29 16:32:38 -0300122 E241,
123 E203
beierlm4335f992021-03-24 09:26:06 -0400124exclude =
125 .git,
126 __pycache__,
127 .tox,
128max-line-length = 128
129show-source = True
130builtins = _
garciadeblas09fa3d42019-10-08 18:30:46 +0200131