| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 1 | ####################################################################################### |
| 2 | # Copyright ETSI Contributors and Others. |
| 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 | # |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 10 | # Unless required by applicable law or agreed to in writing, software |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 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 | ####################################################################################### |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 17 | |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 18 | [tox] |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 19 | envlist = black, cover, flake8, pylint, safety |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 20 | |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 21 | [tox:jenkins] |
| 22 | toxworkdir = /tmp/.tox |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 23 | |
| 24 | [testenv] |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 25 | usedevelop = True |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 26 | basepython = python3 |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONDONTWRITEBYTECODE = 1 |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 29 | deps = -r{toxinidir}/requirements.txt |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 30 | |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 31 | ####################################################################################### |
| 32 | [testenv:black] |
| 33 | deps = black |
| 34 | skip_install = true |
| 35 | commands = |
| 36 | - black --check --diff osm_mon/ |
| 37 | |
| 38 | |
| 39 | ####################################################################################### |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 40 | [testenv:cover] |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 41 | deps = {[testenv]deps} |
| 42 | -r{toxinidir}/requirements-dev.txt |
| 43 | -r{toxinidir}/requirements-test.txt |
| beierl | 2329b92 | 2019-07-12 11:55:36 -0400 | [diff] [blame] | 44 | commands = |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 45 | sh -c 'rm -f nosetests.xml' |
| 46 | coverage erase |
| 47 | nose2 -C --coverage osm_mon |
| 48 | coverage report --omit='*tests*' |
| 49 | coverage html -d ./cover --omit='*tests*' |
| 50 | coverage xml -o coverage.xml --omit=*tests* |
| 51 | whitelist_externals = sh |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 52 | |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 53 | |
| 54 | ####################################################################################### |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 55 | [testenv:flake8] |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 56 | deps = flake8 |
| 57 | commands = |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 58 | flake8 osm_mon/ setup.py |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 59 | |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 60 | |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 61 | ####################################################################################### |
| 62 | [testenv:pylint] |
| 63 | deps = {[testenv]deps} |
| 64 | -r{toxinidir}/requirements-dev.txt |
| 65 | -r{toxinidir}/requirements-test.txt |
| 66 | pylint |
| 67 | commands = |
| 68 | pylint -E osm_mon |
| 69 | |
| 70 | |
| 71 | ####################################################################################### |
| 72 | [testenv:safety] |
| 73 | setenv = |
| 74 | LC_ALL=C.UTF-8 |
| 75 | LANG=C.UTF-8 |
| 76 | deps = {[testenv]deps} |
| 77 | safety |
| 78 | commands = |
| 79 | - safety check --full-report |
| 80 | |
| 81 | |
| 82 | ####################################################################################### |
| 83 | [testenv:pip-compile] |
| 84 | deps = pip-tools==5.5.0 |
| 85 | commands = |
| 86 | - sh -c 'for file in requirements*.in ; do pip-compile -rU --no-header $file ;\ |
| 87 | out=`echo $file | sed "s/.in/.txt/"` ; \ |
| 88 | head -16 tox.ini >> $out ;\ |
| 89 | done' |
| 90 | whitelist_externals = sh |
| 91 | |
| 92 | |
| 93 | ####################################################################################### |
| 94 | [testenv:dist] |
| 95 | deps = {[testenv]deps} |
| 96 | -r{toxinidir}/requirements-dist.txt |
| 97 | |
| 98 | # In the commands, we copy the requirements.txt to be presented as a source file (.py) |
| 99 | # so it gets included in the .deb package for others to consume |
| 100 | commands = |
| 101 | sh -c 'cp requirements.txt osm_mon/requirements.txt' |
| 102 | python3 setup.py --command-packages=stdeb.command sdist_dsc |
| 103 | sh -c 'cd deb_dist/osm-mon*/ && dpkg-buildpackage -rfakeroot -uc -us' |
| 104 | sh -c 'rm osm_mon/requirements.txt' |
| 105 | whitelist_externals = sh |
| 106 | |
| 107 | ####################################################################################### |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 108 | [flake8] |
| beierlm | bb0f2a3 | 2021-02-16 13:30:35 -0500 | [diff] [blame] | 109 | ignore = |
| 110 | W291, |
| 111 | W293, |
| 112 | W503, |
| 113 | E123, |
| 114 | E125, |
| 115 | E226, |
| 116 | E241 |
| 117 | exclude = |
| 118 | .git, |
| 119 | __pycache__, |
| 120 | .tox, |
| Benjamin Diaz | b726161 | 2018-05-11 18:00:16 -0300 | [diff] [blame] | 121 | max-line-length = 120 |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 122 | show-source = True |
| Helena McGough | 95b92b3 | 2017-10-01 12:03:53 +0100 | [diff] [blame] | 123 | builtins = _ |