| 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 |
| madavi | c0a1f69 | 2020-01-16 17:51:43 +0530 | [diff] [blame] | 26 | basepython = python3 |
| 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 |
| 31 | |
| 32 | |
| 33 | ####################################################################################### |
| 34 | [testenv:black] |
| 35 | commands = python3 -c 'print("Skipping due to generated code")' |
| 36 | |
| 37 | |
| 38 | ####################################################################################### |
| 39 | [testenv:cover] |
| 40 | deps = {[testenv]deps} |
| 41 | -r{toxinidir}/requirements-test.txt |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 42 | commands = |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame^] | 43 | sh -c 'make clean' |
| 44 | sh -c 'make models Q=""' |
| 45 | sh -c 'rm -f nosetests.xml' |
| 46 | coverage erase |
| 47 | nose2 -C --coverage osm_im -s tests |
| 48 | coverage report --omit='*tests*' |
| 49 | coverage html -d ./cover --omit='*tests*' |
| 50 | coverage xml -o coverage.xml --omit=*tests* |
| 51 | whitelist_externals = sh |
| Mike Marchetti | 94b645e | 2017-08-04 14:33:54 -0400 | [diff] [blame] | 52 | |
| Mike Marchetti | ce4a73d | 2018-08-29 15:40:41 -0400 | [diff] [blame] | 53 | |
| beierlm | 5b3f4b6 | 2021-02-17 07:22:20 -0500 | [diff] [blame^] | 54 | ####################################################################################### |
| 55 | [testenv:flake8] |
| 56 | commands = python3 -c 'print("Skipping due to generated code")' |
| 57 | |
| 58 | |
| 59 | ####################################################################################### |
| 60 | [testenv:pylint] |
| 61 | commands = python3 -c 'print("Skipping due to generated code")' |
| 62 | |
| 63 | |
| 64 | ####################################################################################### |
| 65 | [testenv:safety] |
| 66 | setenv = |
| 67 | LC_ALL=C.UTF-8 |
| 68 | LANG=C.UTF-8 |
| 69 | deps = {[testenv]deps} |
| 70 | safety |
| 71 | commands = |
| 72 | - safety check --full-report |
| 73 | |
| 74 | |
| 75 | ####################################################################################### |
| 76 | [testenv:pip-compile] |
| 77 | deps = pip-tools==5.5.0 |
| 78 | commands = |
| 79 | - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\ |
| 80 | out=`echo $file | sed "s/.in/.txt/"` ; \ |
| 81 | head -16 tox.ini >> $out ;\ |
| 82 | done' |
| 83 | whitelist_externals = sh |
| 84 | |
| 85 | |
| 86 | ####################################################################################### |
| 87 | [testenv:dist] |
| 88 | deps = {[testenv]deps} |
| 89 | -r{toxinidir}/requirements-dist.txt |
| 90 | |
| 91 | # In the commands, we copy the requirements.txt to be presented as a source file (.py) |
| 92 | # so it gets included in the .deb package for others to consume |
| 93 | commands = |
| 94 | sh -c 'make clean' |
| 95 | sh -c 'make Q=""' |
| 96 | sh -c 'cp requirements.txt osm_im/requirements.txt' |
| 97 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 98 | sh -c 'cd deb_dist/osm-im*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 99 | sh -c 'rm osm_im/requirements.txt' |
| 100 | whitelist_externals = sh |
| 101 | |
| 102 | ####################################################################################### |
| 103 | [flake8] |
| 104 | ignore = |
| 105 | W291, |
| 106 | W293, |
| 107 | E123, |
| 108 | E125, |
| 109 | E226, |
| 110 | E241 |
| 111 | exclude = |
| 112 | .git, |
| 113 | __pycache__, |
| 114 | .tox, |
| 115 | max-line-length = 120 |
| 116 | show-source = True |
| 117 | builtins = _ |