blob: 54128a04ee35887d2e52db95b0a4e2932c26abf6 [file] [log] [blame]
beierlm5b3f4b62021-02-17 07:22:20 -05001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
garciaale76f6a622020-11-19 17:57:42 -03004# 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
madavic0a1f692020-01-16 17:51:43 +05307#
garciaale76f6a622020-11-19 17:57:42 -03008# http://www.apache.org/licenses/LICENSE-2.0
madavic0a1f692020-01-16 17:51:43 +05309#
garciaale76f6a622020-11-19 17:57:42 -030010# 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.
beierlm5b3f4b62021-02-17 07:22:20 -050016#######################################################################################
garciaale76f6a622020-11-19 17:57:42 -030017
Mike Marchetti94b645e2017-08-04 14:33:54 -040018[tox]
beierlm5b3f4b62021-02-17 07:22:20 -050019envlist = black, cover, flake8, pylint, safety
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
Mike Marchetti94b645e2017-08-04 14:33:54 -040023
24[testenv]
beierlm5b3f4b62021-02-17 07:22:20 -050025usedevelop = True
madavic0a1f692020-01-16 17:51:43 +053026basepython = python3
beierlm5b3f4b62021-02-17 07:22:20 -050027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29passenv = HOME
30deps = -r{toxinidir}/requirements.txt
beierlmd8fdecc2021-04-20 12:18:52 -040031skip_install = true
beierlm5b3f4b62021-02-17 07:22:20 -050032
33
34#######################################################################################
35[testenv:black]
36commands = python3 -c 'print("Skipping due to generated code")'
37
38
39#######################################################################################
40[testenv:cover]
beierlmd8fdecc2021-04-20 12:18:52 -040041skip_install = false
beierlm5b3f4b62021-02-17 07:22:20 -050042deps = {[testenv]deps}
43 -r{toxinidir}/requirements-test.txt
Mike Marchetti94b645e2017-08-04 14:33:54 -040044commands =
beierlm5b3f4b62021-02-17 07:22:20 -050045 sh -c 'make clean'
46 sh -c 'make models Q=""'
47 sh -c 'rm -f nosetests.xml'
48 coverage erase
49 nose2 -C --coverage osm_im -s tests
50 coverage report --omit='*tests*'
51 coverage html -d ./cover --omit='*tests*'
52 coverage xml -o coverage.xml --omit=*tests*
53whitelist_externals = sh
Mike Marchetti94b645e2017-08-04 14:33:54 -040054
Mike Marchettice4a73d2018-08-29 15:40:41 -040055
beierlm5b3f4b62021-02-17 07:22:20 -050056#######################################################################################
57[testenv:flake8]
58commands = python3 -c 'print("Skipping due to generated code")'
59
60
61#######################################################################################
62[testenv:pylint]
63commands = python3 -c 'print("Skipping due to generated code")'
64
65
66#######################################################################################
67[testenv:safety]
68setenv =
69 LC_ALL=C.UTF-8
70 LANG=C.UTF-8
71deps = {[testenv]deps}
72 safety
73commands =
74 - safety check --full-report
75
76
77#######################################################################################
78[testenv:pip-compile]
79deps = pip-tools==5.5.0
80commands =
81 - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\
82 out=`echo $file | sed "s/.in/.txt/"` ; \
83 head -16 tox.ini >> $out ;\
84 done'
85whitelist_externals = sh
86
87
88#######################################################################################
89[testenv:dist]
90deps = {[testenv]deps}
91 -r{toxinidir}/requirements-dist.txt
92
93# In the commands, we copy the requirements.txt to be presented as a source file (.py)
94# so it gets included in the .deb package for others to consume
95commands =
96 sh -c 'make clean'
97 sh -c 'make Q=""'
98 sh -c 'cp requirements.txt osm_im/requirements.txt'
99 python3 setup.py --command-packages=stdeb.command sdist_dsc
100 sh -c 'cd deb_dist/osm-im*/ && dpkg-buildpackage -rfakeroot -uc -us'
101 sh -c 'rm osm_im/requirements.txt'
102whitelist_externals = sh
103
104#######################################################################################
105[flake8]
106ignore =
107 W291,
108 W293,
109 E123,
110 E125,
111 E226,
112 E241
113exclude =
114 .git,
115 __pycache__,
116 .tox,
117max-line-length = 120
118show-source = True
119builtins = _