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