| beierlm | 4e49c96 | 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 | 4e49c96 | 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 | 4e49c96 | 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 |
| 26 | basepython = python3 |
| beierlm | 4e49c96 | 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 | 4e49c96 | 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 = |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 37 | - black --check --diff osm_common/ |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 38 | |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 39 | ####################################################################################### |
| 40 | [testenv:cover] |
| 41 | deps = {[testenv]deps} |
| 42 | -r{toxinidir}/requirements-test.txt |
| 43 | commands = |
| 44 | sh -c 'rm -f nosetests.xml' |
| 45 | coverage erase |
| 46 | nose2 -C --coverage osm_common -s osm_common/tests |
| 47 | coverage report --omit='*tests*' |
| 48 | coverage html -d ./cover --omit='*tests*' |
| 49 | coverage xml -o coverage.xml --omit=*tests* |
| 50 | whitelist_externals = sh |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 51 | |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 52 | ####################################################################################### |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 53 | [testenv:flake8] |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 54 | deps = flake8 |
| 55 | commands = |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 56 | flake8 osm_common/ setup.py |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 57 | |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 58 | ####################################################################################### |
| 59 | [testenv:pylint] |
| 60 | deps = {[testenv]deps} |
| 61 | -r{toxinidir}/requirements-test.txt |
| 62 | pylint |
| 63 | commands = |
| 64 | pylint -E osm_common |
| tierno | 136f295 | 2018-10-19 13:01:03 +0200 | [diff] [blame] | 65 | |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 66 | ####################################################################################### |
| 67 | [testenv:safety] |
| 68 | setenv = |
| 69 | LC_ALL=C.UTF-8 |
| 70 | LANG=C.UTF-8 |
| 71 | deps = {[testenv]deps} |
| 72 | safety |
| 73 | commands = |
| 74 | - safety check --full-report |
| garciadeblas | a874799 | 2020-07-03 10:59:34 +0000 | [diff] [blame] | 75 | |
| beierlm | 4e49c96 | 2021-02-11 14:57:14 -0500 | [diff] [blame] | 76 | ####################################################################################### |
| 77 | [testenv:pip-compile] |
| 78 | deps = pip-tools==5.5.0 |
| 79 | commands = |
| 80 | - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\ |
| 81 | out=`echo $file | sed "s/.in/.txt/"` ; \ |
| 82 | head -16 tox.ini >> $out ;\ |
| 83 | done' |
| 84 | whitelist_externals = sh |
| 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 'cp requirements.txt osm_common/requirements.txt' |
| 95 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 96 | sh -c 'cd deb_dist/osm-common*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 97 | sh -c 'rm osm_common/requirements.txt' |
| 98 | whitelist_externals = sh |
| 99 | |
| 100 | ####################################################################################### |
| 101 | [flake8] |
| 102 | ignore = |
| 103 | W291, |
| 104 | W293, |
| 105 | E123, |
| 106 | E125, |
| 107 | E226, |
| 108 | E241 |
| 109 | exclude = |
| 110 | .git, |
| 111 | __pycache__, |
| 112 | .tox, |
| 113 | max-line-length = 120 |
| 114 | show-source = True |
| 115 | builtins = _ |