blob: bf0cdb9c5cda124195729786a1f08f2c17e3f017 [file] [log] [blame]
beierlmbb0f2a32021-02-16 13:30:35 -05001#######################################################################################
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#
Helena McGough95b92b32017-10-01 12:03:53 +010010# Unless required by applicable law or agreed to in writing, software
beierlmbb0f2a32021-02-16 13:30:35 -050011# 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#######################################################################################
Helena McGough95b92b32017-10-01 12:03:53 +010017
Helena McGough95b92b32017-10-01 12:03:53 +010018[tox]
beierlmbb0f2a32021-02-16 13:30:35 -050019envlist = black, cover, flake8, pylint, safety
beierl2329b922019-07-12 11:55:36 -040020
beierlmbb0f2a32021-02-16 13:30:35 -050021[tox:jenkins]
22toxworkdir = /tmp/.tox
Helena McGough95b92b32017-10-01 12:03:53 +010023
24[testenv]
beierl2329b922019-07-12 11:55:36 -040025usedevelop = True
beierlm586f3d02022-01-26 10:30:44 -050026basepython = python3.8
beierl2329b922019-07-12 11:55:36 -040027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
beierlmbb0f2a32021-02-16 13:30:35 -050029deps = -r{toxinidir}/requirements.txt
beierl2329b922019-07-12 11:55:36 -040030
beierlmbb0f2a32021-02-16 13:30:35 -050031#######################################################################################
32[testenv:black]
33deps = black
34skip_install = true
35commands =
36 - black --check --diff osm_mon/
garciadeblas8e4179f2021-05-14 16:47:03 +020037 - black --check --diff setup.py
beierlmbb0f2a32021-02-16 13:30:35 -050038
39
40#######################################################################################
beierl2329b922019-07-12 11:55:36 -040041[testenv:cover]
beierlmbb0f2a32021-02-16 13:30:35 -050042deps = {[testenv]deps}
43 -r{toxinidir}/requirements-dev.txt
44 -r{toxinidir}/requirements-test.txt
beierl2329b922019-07-12 11:55:36 -040045commands =
beierlmbb0f2a32021-02-16 13:30:35 -050046 sh -c 'rm -f nosetests.xml'
47 coverage erase
48 nose2 -C --coverage osm_mon
49 coverage report --omit='*tests*'
50 coverage html -d ./cover --omit='*tests*'
51 coverage xml -o coverage.xml --omit=*tests*
52whitelist_externals = sh
Helena McGough95b92b32017-10-01 12:03:53 +010053
beierlmbb0f2a32021-02-16 13:30:35 -050054
55#######################################################################################
Benjamin Diazb7261612018-05-11 18:00:16 -030056[testenv:flake8]
Benjamin Diazb7261612018-05-11 18:00:16 -030057deps = flake8
58commands =
beierlmbb0f2a32021-02-16 13:30:35 -050059 flake8 osm_mon/ setup.py
Helena McGough95b92b32017-10-01 12:03:53 +010060
Helena McGough95b92b32017-10-01 12:03:53 +010061
beierlmbb0f2a32021-02-16 13:30:35 -050062#######################################################################################
63[testenv:pylint]
64deps = {[testenv]deps}
65 -r{toxinidir}/requirements-dev.txt
66 -r{toxinidir}/requirements-test.txt
67 pylint
68commands =
69 pylint -E osm_mon
70
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]
beierlm586f3d02022-01-26 10:30:44 -050085deps = pip-tools==6.4.0
86skip_install = true
87whitelist_externals = bash
88 [
beierlmbb0f2a32021-02-16 13:30:35 -050089commands =
beierlm586f3d02022-01-26 10:30:44 -050090 - bash -c "for file in requirements*.in ; do \
91 UNSAFE="" ; \
92 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
93 pip-compile -rU --no-header $UNSAFE $file ;\
94 out=`echo $file | sed 's/.in/.txt/'` ; \
95 sed -i -e '1 e head -16 tox.ini' $out ;\
96 done"
beierlmbb0f2a32021-02-16 13:30:35 -050097
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 osm_mon/requirements.txt'
108 python3 setup.py --command-packages=stdeb.command sdist_dsc
109 sh -c 'cd deb_dist/osm-mon*/ && dpkg-buildpackage -rfakeroot -uc -us'
110 sh -c 'rm osm_mon/requirements.txt'
111whitelist_externals = sh
112
113#######################################################################################
Helena McGough95b92b32017-10-01 12:03:53 +0100114[flake8]
beierlmbb0f2a32021-02-16 13:30:35 -0500115ignore =
116 W291,
117 W293,
118 W503,
119 E123,
120 E125,
121 E226,
122 E241
123exclude =
124 .git,
125 __pycache__,
126 .tox,
Benjamin Diazb7261612018-05-11 18:00:16 -0300127max-line-length = 120
Helena McGough95b92b32017-10-01 12:03:53 +0100128show-source = True
Helena McGough95b92b32017-10-01 12:03:53 +0100129builtins = _