blob: a357cbf119b6b7d4f1be9b17c34a26873a7262a2 [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
beierlm9457c882022-01-18 08:52:27 -050026basepython = python3.8
beierlmacf83f82021-03-17 08:11:23 -040027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29deps = -r{toxinidir}/requirements.txt
garciadeblas92aa6272020-02-19 17:40:44 +010030
beierlmacf83f82021-03-17 08:11:23 -040031#######################################################################################
32[testenv:black]
33deps = black
34skip_install = true
garciadeblas92aa6272020-02-19 17:40:44 +010035commands =
beierlmacf83f82021-03-17 08:11:23 -040036 - black --check --diff osm_lcm/
garciadeblas5697b8b2021-03-24 09:17:02 +010037 - black --check --diff setup.py
tiernoc0e42e22018-05-11 11:36:10 +020038
beierlmacf83f82021-03-17 08:11:23 -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 osm_lcm
49 coverage report --omit='*tests*'
50 coverage html -d ./cover --omit='*tests*'
51 coverage xml -o coverage.xml --omit=*tests*
52whitelist_externals = sh
53
54
55#######################################################################################
tiernoc0e42e22018-05-11 11:36:10 +020056[testenv:flake8]
beierlmacf83f82021-03-17 08:11:23 -040057deps = flake8
58commands =
59 flake8 osm_lcm/ setup.py
tiernoc0e42e22018-05-11 11:36:10 +020060
tiernob3cda2e2018-10-30 17:26:59 +000061
beierlmacf83f82021-03-17 08:11:23 -040062#######################################################################################
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_lcm
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]
beierlm9457c882022-01-18 08:52:27 -050085deps = pip-tools==6.4.0
86skip_install = true
87whitelist_externals = bash
88 [
beierlmacf83f82021-03-17 08:11:23 -040089commands =
beierlm9457c882022-01-18 08:52:27 -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"
beierlmacf83f82021-03-17 08:11:23 -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 osm_lcm/requirements.txt'
108 python3 setup.py --command-packages=stdeb.command sdist_dsc
109 sh -c 'cd deb_dist/osm-lcm*/ && dpkg-buildpackage -rfakeroot -uc -us'
110 sh -c 'rm osm_lcm/requirements.txt'
111whitelist_externals = sh
112
113#######################################################################################
114[flake8]
115ignore =
116 W291,
117 W293,
118 W503,
119 E123,
120 E125,
121 E226,
122 E241,
123# Temporary until code can be reformatted
124 E121,
125 E122,
126 E203,
127 E303,
128 E501
129 W504
130exclude =
131 .git,
132 __pycache__,
133 .tox,
134max-line-length = 120
135show-source = True
136builtins = _