1 #######################################################################################
2 # Copyright ETSI Contributors and Others.
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #######################################################################################
19 envlist = black, cover, flake8, pylint, safety
22 toxworkdir = /tmp/.tox
26 basepython = python3.8
27 setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29 deps = -r{toxinidir}/requirements.txt
30 parallel_show_output = true
32 #######################################################################################
37 black
--check
--diff osm_mon
/
38 black
--check
--diff setup.py
41 #######################################################################################
43 deps = {[testenv]deps}
44 -r
{toxinidir
}/requirements
-dev.txt
45 -r
{toxinidir
}/requirements
-test.txt
47 sh
-c 'rm
-f nosetests.xml'
49 nose2
-C
--coverage osm_mon
50 coverage report --omit='*tests*'
51 coverage html -d ./cover --omit='*tests*'
52 coverage xml -o coverage.xml --omit=*tests*
53 whitelist_externals = sh
56 #######################################################################################
60 flake8 osm_mon
/ setup.py
63 #######################################################################################
65 deps = {[testenv]deps}
66 -r
{toxinidir
}/requirements
-dev.txt
67 -r
{toxinidir
}/requirements
-test.txt
73 #######################################################################################
78 deps = {[testenv]deps}
81 - safety check
--full
-report
84 #######################################################################################
86 deps = pip-tools==6.6.2
88 whitelist_externals = bash
91 - bash
-c
"for file in requirements*.in ; do \
93 if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \
94 pip-compile -rU --no-header $UNSAFE $file ;\
95 out=`echo $file | sed 's/.in/.txt/'` ; \
96 sed -i -e '1 e head -16 tox.ini' $out ;\
100 #######################################################################################
102 deps = {[testenv]deps}
103 -r
{toxinidir
}/requirements
-dist.txt
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
108 sh
-c 'cp requirements.txt osm_mon
/requirements.txt'
109 python3 setup.py --command-packages=stdeb.command sdist_dsc
110 sh
-c 'cd deb_dist
/osm
-mon
*/ && dpkg
-buildpackage
-rfakeroot
-uc
-us'
111 sh
-c 'rm osm_mon
/requirements.txt'
112 whitelist_externals = sh
114 #######################################################################################
128 max-line-length = 120