| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [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 | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 16 | ####################################################################################### |
| tierno | 87858ca | 2018-10-08 16:30:15 +0200 | [diff] [blame] | 17 | |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 18 | [tox] |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 19 | envlist = black, cover, flake8, pylint, safety |
| 20 | |
| 21 | [tox:jenkins] |
| 22 | toxworkdir = /tmp/.tox |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 23 | |
| 24 | [testenv] |
| 25 | usedevelop = True |
| beierlm | b0291ff | 2022-01-13 11:37:31 -0500 | [diff] [blame] | 26 | basepython = python3.8 |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONDONTWRITEBYTECODE = 1 |
| 29 | deps = -r{toxinidir}/requirements.txt |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 30 | |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 31 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 32 | ####################################################################################### |
| 33 | [testenv:black] |
| 34 | deps = black |
| 35 | skip_install = true |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 36 | commands = |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 37 | black --check --diff osm_common/ |
| 38 | black --check --diff setup.py |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 39 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 40 | ####################################################################################### |
| 41 | [testenv:cover] |
| 42 | deps = {[testenv]deps} |
| 43 | -r{toxinidir}/requirements-test.txt |
| 44 | commands = |
| 45 | sh -c 'rm -f nosetests.xml' |
| 46 | coverage erase |
| 47 | nose2 -C --coverage osm_common -s osm_common/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 |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 52 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 53 | ####################################################################################### |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 54 | [testenv:flake8] |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 55 | deps = flake8 |
| 56 | commands = |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 57 | flake8 osm_common/ setup.py |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 58 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 59 | ####################################################################################### |
| 60 | [testenv:pylint] |
| 61 | deps = {[testenv]deps} |
| 62 | -r{toxinidir}/requirements-test.txt |
| 63 | pylint |
| 64 | commands = |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 65 | pylint -E osm_common |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 66 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 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 |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 76 | |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 77 | ####################################################################################### |
| 78 | [testenv:pip-compile] |
| beierlm | b0291ff | 2022-01-13 11:37:31 -0500 | [diff] [blame] | 79 | deps = pip-tools==6.4.0 |
| 80 | skip_install = true |
| 81 | whitelist_externals = bash |
| 82 | [ |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 83 | commands = |
| beierlm | b0291ff | 2022-01-13 11:37:31 -0500 | [diff] [blame] | 84 | - bash -c "for file in requirements*.in ; do \ |
| 85 | UNSAFE="" ; \ |
| 86 | if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \ |
| 87 | pip-compile -rU --no-header $UNSAFE $file ;\ |
| 88 | out=`echo $file | sed 's/.in/.txt/'` ; \ |
| 89 | sed -i -e '1 e head -16 tox.ini' $out ;\ |
| 90 | done" |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 91 | |
| 92 | ####################################################################################### |
| 93 | [testenv:dist] |
| 94 | deps = {[testenv]deps} |
| 95 | -r{toxinidir}/requirements-dist.txt |
| 96 | |
| 97 | # In the commands, we copy the requirements.txt to be presented as a source file (.py) |
| 98 | # so it gets included in the .deb package for others to consume |
| 99 | commands = |
| 100 | sh -c 'cp requirements.txt osm_common/requirements.txt' |
| 101 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 102 | sh -c 'cd deb_dist/osm-common*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 103 | sh -c 'rm osm_common/requirements.txt' |
| 104 | whitelist_externals = sh |
| 105 | |
| 106 | ####################################################################################### |
| 107 | [flake8] |
| 108 | ignore = |
| 109 | W291, |
| 110 | W293, |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 111 | W503, |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 112 | E123, |
| 113 | E125, |
| garciadeblas | 2644b76 | 2021-03-24 09:21:01 +0100 | [diff] [blame] | 114 | E203, |
| beierlm | b483b92 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 115 | E226, |
| 116 | E241 |
| 117 | exclude = |
| 118 | .git, |
| 119 | __pycache__, |
| 120 | .tox, |
| 121 | max-line-length = 120 |
| 122 | show-source = True |
| 123 | builtins = _ |