| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| 3 | # |
| garciaale | 76f6a62 | 2020-11-19 17:57:42 -0300 | [diff] [blame] | 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 |
| madavi | c0a1f69 | 2020-01-16 17:51:43 +0530 | [diff] [blame] | 7 | # |
| garciaale | 76f6a62 | 2020-11-19 17:57:42 -0300 | [diff] [blame] | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| madavi | c0a1f69 | 2020-01-16 17:51:43 +0530 | [diff] [blame] | 9 | # |
| garciaale | 76f6a62 | 2020-11-19 17:57:42 -0300 | [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. |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 16 | ####################################################################################### |
| garciaale | 76f6a62 | 2020-11-19 17:57:42 -0300 | [diff] [blame] | 17 | |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 18 | [tox] |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 19 | envlist = black, cover, flake8, pylint, safety |
| 20 | |
| 21 | [tox:jenkins] |
| 22 | toxworkdir = /tmp/.tox |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 23 | |
| 24 | [testenv] |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 25 | usedevelop = True |
| beierlm | 024959e | 2022-01-13 11:39:43 -0500 | [diff] [blame] | 26 | basepython = python3.8 |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONDONTWRITEBYTECODE = 1 |
| 29 | passenv = HOME |
| 30 | deps = -r{toxinidir}/requirements.txt |
| beierlm | d8fdecc | 2021-04-20 12:18:52 -0400 | [diff] [blame] | 31 | skip_install = true |
| garciadeblas | a0b604e | 2024-03-14 19:50:59 +0100 | [diff] [blame] | 32 | parallel_show_output = true |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 33 | |
| 34 | |
| 35 | ####################################################################################### |
| 36 | [testenv:black] |
| 37 | commands = python3 -c 'print("Skipping due to generated code")' |
| 38 | |
| 39 | |
| 40 | ####################################################################################### |
| 41 | [testenv:cover] |
| beierlm | d8fdecc | 2021-04-20 12:18:52 -0400 | [diff] [blame] | 42 | skip_install = false |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 43 | deps = {[testenv]deps} |
| 44 | -r{toxinidir}/requirements-test.txt |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 45 | commands = |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 46 | sh -c 'make clean' |
| 47 | sh -c 'make models Q=""' |
| 48 | sh -c 'rm -f nosetests.xml' |
| 49 | coverage erase |
| 50 | nose2 -C --coverage osm_im -s tests |
| 51 | coverage report --omit='*tests*' |
| 52 | coverage html -d ./cover --omit='*tests*' |
| 53 | coverage xml -o coverage.xml --omit=*tests* |
| 54 | whitelist_externals = sh |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 55 | |
| Mike Marchetti | ce4a73d | 2018-08-29 15:40:41 -0400 | [diff] [blame] | 56 | |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 57 | ####################################################################################### |
| 58 | [testenv:flake8] |
| 59 | commands = python3 -c 'print("Skipping due to generated code")' |
| 60 | |
| 61 | |
| 62 | ####################################################################################### |
| 63 | [testenv:pylint] |
| 64 | commands = python3 -c 'print("Skipping due to generated code")' |
| 65 | |
| 66 | |
| 67 | ####################################################################################### |
| 68 | [testenv:safety] |
| 69 | setenv = |
| 70 | LC_ALL=C.UTF-8 |
| 71 | LANG=C.UTF-8 |
| 72 | deps = {[testenv]deps} |
| 73 | safety |
| 74 | commands = |
| 75 | - safety check --full-report |
| 76 | |
| 77 | |
| 78 | ####################################################################################### |
| 79 | [testenv:pip-compile] |
| garciadeblas | fbd4b42 | 2022-06-24 17:35:45 +0200 | [diff] [blame] | 80 | deps = pip-tools==6.6.2 |
| beierlm | 024959e | 2022-01-13 11:39:43 -0500 | [diff] [blame] | 81 | skip_install = true |
| 82 | whitelist_externals = bash |
| 83 | [ |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 84 | commands = |
| beierlm | 024959e | 2022-01-13 11:39:43 -0500 | [diff] [blame] | 85 | - bash -c "for file in requirements*.in ; do \ |
| 86 | UNSAFE="" ; \ |
| 87 | if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \ |
| 88 | pip-compile -rU --no-header $UNSAFE $file ;\ |
| 89 | out=`echo $file | sed 's/.in/.txt/'` ; \ |
| 90 | sed -i -e '1 e head -16 tox.ini' $out ;\ |
| 91 | done" |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame] | 92 | |
| 93 | |
| 94 | ####################################################################################### |
| 95 | [testenv:dist] |
| 96 | deps = {[testenv]deps} |
| 97 | -r{toxinidir}/requirements-dist.txt |
| 98 | |
| 99 | # In the commands, we copy the requirements.txt to be presented as a source file (.py) |
| 100 | # so it gets included in the .deb package for others to consume |
| 101 | commands = |
| 102 | sh -c 'make clean' |
| 103 | sh -c 'make Q=""' |
| 104 | sh -c 'cp requirements.txt osm_im/requirements.txt' |
| 105 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 106 | sh -c 'cd deb_dist/osm-im*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 107 | sh -c 'rm osm_im/requirements.txt' |
| 108 | whitelist_externals = sh |
| 109 | |
| 110 | ####################################################################################### |
| 111 | [flake8] |
| 112 | ignore = |
| 113 | W291, |
| 114 | W293, |
| 115 | E123, |
| 116 | E125, |
| 117 | E226, |
| 118 | E241 |
| 119 | exclude = |
| 120 | .git, |
| 121 | __pycache__, |
| 122 | .tox, |
| 123 | max-line-length = 120 |
| 124 | show-source = True |
| 125 | builtins = _ |