| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| tierno | b3cda2e | 2018-10-30 17:26:59 +0000 | [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 | # |
| 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. |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 16 | ####################################################################################### |
| tierno | b3cda2e | 2018-10-30 17:26:59 +0000 | [diff] [blame] | 17 | |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 18 | [tox] |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 19 | envlist = black, cover, flake8, pylint, safety |
| 20 | |
| 21 | [tox:jenkins] |
| 22 | toxworkdir = /tmp/.tox |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 23 | |
| 24 | [testenv] |
| garciadeblas | e6d17e6 | 2020-07-03 10:40:56 +0000 | [diff] [blame] | 25 | usedevelop = True |
| Gabriel Cuba | e789898 | 2023-05-11 01:57:21 -0500 | [diff] [blame] | 26 | basepython = python3.10 |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONDONTWRITEBYTECODE = 1 |
| 29 | deps = -r{toxinidir}/requirements.txt |
| garciadeblas | fb1e25f | 2022-11-18 14:36:22 +0100 | [diff] [blame] | 30 | parallel_show_output = true |
| garciadeblas | 92aa627 | 2020-02-19 17:40:44 +0100 | [diff] [blame] | 31 | |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 32 | ####################################################################################### |
| 33 | [testenv:black] |
| garciadeblas | 44521d2 | 2024-01-29 18:45:45 +0100 | [diff] [blame] | 34 | deps = black==23.12.1 |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 35 | skip_install = true |
| garciadeblas | 92aa627 | 2020-02-19 17:40:44 +0100 | [diff] [blame] | 36 | commands = |
| preethika.p | 28b0bf8 | 2022-09-23 07:36:28 +0000 | [diff] [blame] | 37 | black --check --diff osm_lcm/ |
| 38 | black --check --diff setup.py |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 39 | |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [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 osm_lcm |
| 50 | coverage report --omit='*tests*' |
| 51 | coverage html -d ./cover --omit='*tests*' |
| 52 | coverage xml -o coverage.xml --omit=*tests* |
| garciadeblas | 734c32b | 2023-03-01 11:39:15 +0100 | [diff] [blame] | 53 | allowlist_externals = sh |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 54 | |
| 55 | |
| 56 | ####################################################################################### |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 57 | [testenv:flake8] |
| Anirudh Gupta | c2be949 | 2025-05-13 05:53:38 +0000 | [diff] [blame] | 58 | deps = flake8 |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 59 | commands = |
| 60 | flake8 osm_lcm/ setup.py |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 61 | |
| tierno | b3cda2e | 2018-10-30 17:26:59 +0000 | [diff] [blame] | 62 | |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 63 | ####################################################################################### |
| 64 | [testenv:pylint] |
| 65 | deps = {[testenv]deps} |
| 66 | -r{toxinidir}/requirements-dev.txt |
| 67 | -r{toxinidir}/requirements-test.txt |
| garciadeblas | c03e17e | 2024-05-22 23:30:12 +0200 | [diff] [blame] | 68 | pylint==3.1.1 |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 69 | commands = |
| garciadeblas | 734c32b | 2023-03-01 11:39:15 +0100 | [diff] [blame] | 70 | pylint -E osm_lcm --extension-pkg-allow-list=pydantic # issue with pydantic (https://github.com/pydantic/pydantic/issues/1961) |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 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] |
| garciadeblas | 6a8c781 | 2023-09-29 08:07:00 +0200 | [diff] [blame] | 86 | deps = pip-tools==6.13.0 |
| beierlm | d213eba | 2022-01-18 08:52:27 -0500 | [diff] [blame] | 87 | skip_install = true |
| garciadeblas | 734c32b | 2023-03-01 11:39:15 +0100 | [diff] [blame] | 88 | allowlist_externals = bash |
| beierlm | d213eba | 2022-01-18 08:52:27 -0500 | [diff] [blame] | 89 | [ |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 90 | commands = |
| beierlm | d213eba | 2022-01-18 08:52:27 -0500 | [diff] [blame] | 91 | - bash -c "for file in requirements*.in ; do \ |
| 92 | UNSAFE="" ; \ |
| 93 | if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \ |
| garciadeblas | 6a8c781 | 2023-09-29 08:07:00 +0200 | [diff] [blame] | 94 | pip-compile --resolver=backtracking -rU --no-header $UNSAFE $file ;\ |
| beierlm | d213eba | 2022-01-18 08:52:27 -0500 | [diff] [blame] | 95 | out=`echo $file | sed 's/.in/.txt/'` ; \ |
| 96 | sed -i -e '1 e head -16 tox.ini' $out ;\ |
| 97 | done" |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [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 osm_lcm/requirements.txt' |
| 109 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 110 | sh -c 'cd deb_dist/osm-lcm*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 111 | sh -c 'rm osm_lcm/requirements.txt' |
| garciadeblas | 734c32b | 2023-03-01 11:39:15 +0100 | [diff] [blame] | 112 | allowlist_externals = sh |
| beierlm | acf83f8 | 2021-03-17 08:11:23 -0400 | [diff] [blame] | 113 | |
| 114 | ####################################################################################### |
| 115 | [flake8] |
| 116 | ignore = |
| 117 | W291, |
| 118 | W293, |
| 119 | W503, |
| 120 | E123, |
| 121 | E125, |
| 122 | E226, |
| 123 | E241, |
| 124 | # Temporary until code can be reformatted |
| 125 | E121, |
| 126 | E122, |
| 127 | E203, |
| 128 | E303, |
| 129 | E501 |
| 130 | W504 |
| 131 | exclude = |
| 132 | .git, |
| 133 | __pycache__, |
| 134 | .tox, |
| 135 | max-line-length = 120 |
| 136 | show-source = True |
| 137 | builtins = _ |