| sousaedu | 3f6fa06 | 2021-01-19 11:32:39 +0000 | [diff] [blame] | 1 | # Copyright 2021 Canonical Ltd. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | # |
| 15 | # For those usages not covered by the Apache License, Version 2.0 please |
| 16 | # contact: legal@canonical.com |
| 17 | # |
| 18 | # To get in touch with the maintainers, please contact: |
| 19 | # osm-charmers@lists.launchpad.net |
| 20 | ## |
| 21 | |
| 22 | [tox] |
| 23 | envlist = pep8 |
| 24 | skipsdist = True |
| 25 | |
| 26 | [testenv] |
| 27 | setenv = VIRTUAL_ENV={envdir} |
| 28 | PYTHONHASHSEED=0 |
| 29 | whitelist_externals = juju |
| 30 | passenv = HOME TERM CS_API_* OS_* AMULET_* |
| 31 | deps = -r{toxinidir}/test-requirements.txt |
| 32 | install_command = |
| 33 | pip install {opts} {packages} |
| 34 | |
| 35 | [testenv:build] |
| 36 | basepython = python3 |
| 37 | passenv=HTTP_PROXY HTTPS_PROXY NO_PROXY |
| 38 | setenv = CHARM_LAYERS_DIR = /tmp |
| 39 | whitelist_externals = git |
| 40 | charm |
| 41 | rm |
| 42 | mv |
| 43 | commands = |
| 44 | rm -rf /tmp/canonical-osm /tmp/osm-common |
| 45 | rm -rf release |
| 46 | git clone https://git.launchpad.net/charm-osm-common /tmp/osm-common |
| 47 | charm build . --build-dir /tmp |
| 48 | mv /tmp/zookeeper-k8s/ release/ |
| 49 | |
| 50 | [testenv:black] |
| 51 | basepython = python3 |
| 52 | deps = |
| 53 | black |
| 54 | yamllint |
| 55 | flake8 |
| 56 | commands = |
| 57 | black --check --diff . |
| 58 | yamllint . |
| 59 | flake8 reactive/ --max-line-length=88 |
| 60 | flake8 tests/ --max-line-length=88 |
| 61 | |
| 62 | [testenv:pep8] |
| 63 | basepython = python3 |
| 64 | deps=charm-tools |
| 65 | commands = charm-proof |
| 66 | |
| 67 | [testenv:func-noop] |
| 68 | basepython = python3 |
| 69 | commands = |
| 70 | true |
| 71 | |
| 72 | [testenv:func] |
| 73 | basepython = python3 |
| 74 | commands = functest-run-suite |
| 75 | |
| 76 | [testenv:func-smoke] |
| 77 | basepython = python3 |
| 78 | commands = functest-run-suite --keep-model --smoke |
| 79 | |
| 80 | [testenv:venv] |
| 81 | commands = {posargs} |