blob: 0e3f69ffb65e6d5c4109b5d9be15b9c9f87b58a2 [file] [log] [blame]
David Garcia7c6840b2021-02-12 17:19:13 +01001#######################################################################################
2# Copyright ETSI Contributors and Others.
Adam Israel19c5cfc2019-10-03 12:35:38 -04003#
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#
David Garcia7c6840b2021-02-12 17:19:13 +01008# http://www.apache.org/licenses/LICENSE-2.0
Adam Israel19c5cfc2019-10-03 12:35:38 -04009#
David Garcia7c6840b2021-02-12 17:19:13 +010010# 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#######################################################################################
Adam Israel19c5cfc2019-10-03 12:35:38 -040017
Adam Israelc3e6c2e2018-03-01 09:31:50 -050018[tox]
David Garcia7c6840b2021-02-12 17:19:13 +010019envlist = black, cover, flake8, pylint, safety
20
21[tox:jenkins]
22toxworkdir = /tmp/.tox
Adam Israel5e08a0e2018-09-06 19:22:47 -040023
Adam Israelc3e6c2e2018-03-01 09:31:50 -050024[testenv]
David Garcia7c6840b2021-02-12 17:19:13 +010025usedevelop = True
beierlmf52cb7c2020-04-21 16:36:35 -040026basepython = python3
David Garcia7c6840b2021-02-12 17:19:13 +010027setenv = VIRTUAL_ENV={envdir}
28 PYTHONDONTWRITEBYTECODE = 1
29deps = -r{toxinidir}/requirements.txt
Adam Israelc3e6c2e2018-03-01 09:31:50 -050030
beierlm0a8c9af2020-05-12 15:26:37 -040031
David Garcia7c6840b2021-02-12 17:19:13 +010032#######################################################################################
beierlmf52cb7c2020-04-21 16:36:35 -040033[testenv:black]
David Garcia7c6840b2021-02-12 17:19:13 +010034deps = black
35skip_install = true
beierlmf52cb7c2020-04-21 16:36:35 -040036commands =
David Garcia4ae527e2021-07-26 16:04:59 +020037 black --check --diff n2vc/
38 black --check --diff setup.py
beierlmf52cb7c2020-04-21 16:36:35 -040039
David Garcia7c6840b2021-02-12 17:19:13 +010040
41#######################################################################################
42[testenv:cover]
43deps = {[testenv]deps}
44 -r{toxinidir}/requirements-dev.txt
45 -r{toxinidir}/requirements-test.txt
46commands =
47 sh -c 'rm -f nosetests.xml'
48 coverage erase
49 nose2 -C --coverage n2vc
50 coverage report --omit='*tests*'
51 coverage html -d ./cover --omit='*tests*'
52 coverage xml -o coverage.xml --omit=*tests*
53whitelist_externals = sh
54
55
56#######################################################################################
beierlmf52cb7c2020-04-21 16:36:35 -040057[testenv:flake8]
David Garcia7c6840b2021-02-12 17:19:13 +010058deps = flake8
beierlmf52cb7c2020-04-21 16:36:35 -040059commands =
David Garcia7c6840b2021-02-12 17:19:13 +010060 flake8 n2vc/ setup.py
beierlmf52cb7c2020-04-21 16:36:35 -040061
David Garcia7c6840b2021-02-12 17:19:13 +010062
63#######################################################################################
64[testenv:pylint]
65deps = {[testenv]deps}
66 -r{toxinidir}/requirements-dev.txt
67 -r{toxinidir}/requirements-test.txt
68 pylint
69commands =
70 pylint -E n2vc
71
72
73#######################################################################################
74[testenv:safety]
75setenv =
76 LC_ALL=C.UTF-8
77 LANG=C.UTF-8
78deps = {[testenv]deps}
79 safety
80commands =
81 - safety check --full-report
82
83
84#######################################################################################
85[testenv:pip-compile]
86deps = pip-tools==5.5.0
87commands =
88 - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\
89 out=`echo $file | sed "s/.in/.txt/"` ; \
90 head -16 tox.ini >> $out ;\
91 done'
92whitelist_externals = sh
93
94
95#######################################################################################
96[testenv:dist]
97deps = {[testenv]deps}
98 -r{toxinidir}/requirements-dist.txt
99
100# In the commands, we copy the requirements.txt to be presented as a source file (.py)
101# so it gets included in the .deb package for others to consume
102commands =
103 sh -c 'cp requirements.txt n2vc/requirements.txt'
104 python3 setup.py --command-packages=stdeb.command sdist_dsc
105 sh -c 'cd deb_dist/n2vc*/ && dpkg-buildpackage -rfakeroot -uc -us'
106 sh -c 'rm n2vc/requirements.txt'
107whitelist_externals = sh
108
109#######################################################################################
beierlmf52cb7c2020-04-21 16:36:35 -0400110[flake8]
David Garcia7c6840b2021-02-12 17:19:13 +0100111ignore =
112 W291,
113 W293,
David Garcia19da2b82021-04-15 10:15:29 +0200114 W503,
David Garcia7c6840b2021-02-12 17:19:13 +0100115 E123,
116 E125,
David Garcia4ae527e2021-07-26 16:04:59 +0200117 E203,
David Garcia7c6840b2021-02-12 17:19:13 +0100118 E226,
119 E241
120exclude =
121 .git,
122 __pycache__,
123 .tox,
124max-line-length = 120
beierlmf52cb7c2020-04-21 16:36:35 -0400125show-source = True
David Garcia7c6840b2021-02-12 17:19:13 +0100126builtins = _