| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| Adam Israel | 19c5cfc | 2019-10-03 12:35:38 -0400 | [diff] [blame] | 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 | # |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| Adam Israel | 19c5cfc | 2019-10-03 12:35:38 -0400 | [diff] [blame] | 9 | # |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 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. |
| 16 | ####################################################################################### |
| Adam Israel | 19c5cfc | 2019-10-03 12:35:38 -0400 | [diff] [blame] | 17 | |
| Adam Israel | c3e6c2e | 2018-03-01 09:31:50 -0500 | [diff] [blame] | 18 | [tox] |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 19 | envlist = black, cover, flake8, pylint, safety |
| 20 | |
| 21 | [tox:jenkins] |
| 22 | toxworkdir = /tmp/.tox |
| Adam Israel | 5e08a0e | 2018-09-06 19:22:47 -0400 | [diff] [blame] | 23 | |
| Adam Israel | c3e6c2e | 2018-03-01 09:31:50 -0500 | [diff] [blame] | 24 | [testenv] |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 25 | usedevelop = True |
| beierlm | 2519b54 | 2022-01-13 11:43:45 -0500 | [diff] [blame] | 26 | basepython = python3.8 |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONDONTWRITEBYTECODE = 1 |
| 29 | deps = -r{toxinidir}/requirements.txt |
| Adam Israel | c3e6c2e | 2018-03-01 09:31:50 -0500 | [diff] [blame] | 30 | |
| beierlm | 0a8c9af | 2020-05-12 15:26:37 -0400 | [diff] [blame] | 31 | |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 32 | ####################################################################################### |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 33 | [testenv:black] |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 34 | deps = black |
| 35 | skip_install = true |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 36 | commands = |
| David Garcia | 4ae527e | 2021-07-26 16:04:59 +0200 | [diff] [blame] | 37 | black --check --diff n2vc/ |
| 38 | black --check --diff setup.py |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 39 | |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 40 | |
| 41 | ####################################################################################### |
| 42 | [testenv:cover] |
| 43 | deps = {[testenv]deps} |
| 44 | -r{toxinidir}/requirements-dev.txt |
| 45 | -r{toxinidir}/requirements-test.txt |
| 46 | commands = |
| 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* |
| 53 | whitelist_externals = sh |
| 54 | |
| 55 | |
| 56 | ####################################################################################### |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 57 | [testenv:flake8] |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 58 | deps = flake8 |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 59 | commands = |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 60 | flake8 n2vc/ setup.py |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 61 | |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 62 | |
| 63 | ####################################################################################### |
| 64 | [testenv:pylint] |
| 65 | deps = {[testenv]deps} |
| 66 | -r{toxinidir}/requirements-dev.txt |
| 67 | -r{toxinidir}/requirements-test.txt |
| David Garcia | 856d33b | 2021-10-14 15:05:25 +0200 | [diff] [blame] | 68 | pylint==2.10.2 |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 69 | commands = |
| 70 | pylint -E n2vc |
| 71 | |
| 72 | |
| 73 | ####################################################################################### |
| 74 | [testenv:safety] |
| 75 | setenv = |
| 76 | LC_ALL=C.UTF-8 |
| 77 | LANG=C.UTF-8 |
| 78 | deps = {[testenv]deps} |
| 79 | safety |
| 80 | commands = |
| 81 | - safety check --full-report |
| 82 | |
| 83 | |
| 84 | ####################################################################################### |
| 85 | [testenv:pip-compile] |
| beierlm | 23c4455 | 2022-06-24 13:45:23 -0400 | [diff] [blame] | 86 | deps = pip-tools==6.6.2 |
| beierlm | 2519b54 | 2022-01-13 11:43:45 -0500 | [diff] [blame] | 87 | skip_install = true |
| 88 | whitelist_externals = bash |
| 89 | [ |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 90 | commands = |
| beierlm | 2519b54 | 2022-01-13 11:43:45 -0500 | [diff] [blame] | 91 | - bash -c "for file in requirements*.in ; do \ |
| 92 | UNSAFE="" ; \ |
| 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 ;\ |
| 97 | done" |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 98 | |
| 99 | |
| 100 | ####################################################################################### |
| 101 | [testenv:dist] |
| 102 | deps = {[testenv]deps} |
| 103 | -r{toxinidir}/requirements-dist.txt |
| 104 | |
| 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 |
| 107 | commands = |
| 108 | sh -c 'cp requirements.txt n2vc/requirements.txt' |
| 109 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 110 | sh -c 'cd deb_dist/n2vc*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 111 | sh -c 'rm n2vc/requirements.txt' |
| 112 | whitelist_externals = sh |
| 113 | |
| 114 | ####################################################################################### |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 115 | [flake8] |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 116 | ignore = |
| 117 | W291, |
| 118 | W293, |
| David Garcia | 19da2b8 | 2021-04-15 10:15:29 +0200 | [diff] [blame] | 119 | W503, |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 120 | E123, |
| 121 | E125, |
| David Garcia | 4ae527e | 2021-07-26 16:04:59 +0200 | [diff] [blame] | 122 | E203, |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 123 | E226, |
| aticig | 0124464 | 2022-07-28 01:12:03 +0300 | [diff] [blame] | 124 | E241, |
| 125 | E501 |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 126 | exclude = |
| 127 | .git, |
| 128 | __pycache__, |
| 129 | .tox, |
| 130 | max-line-length = 120 |
| beierlm | f52cb7c | 2020-04-21 16:36:35 -0400 | [diff] [blame] | 131 | show-source = True |
| David Garcia | 7c6840b | 2021-02-12 17:19:13 +0100 | [diff] [blame] | 132 | builtins = _ |