| David Garcia | 82c5ffa | 2020-03-09 08:38:17 +0100 | [diff] [blame] | 1 | # Copyright 2020 Canonical Ltd. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain 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, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | [tox] |
| 15 | envlist = pep8 |
| 16 | skipsdist = True |
| 17 | |
| 18 | [testenv] |
| 19 | setenv = VIRTUAL_ENV={envdir} |
| 20 | PYTHONHASHSEED=0 |
| 21 | whitelist_externals = juju |
| 22 | sleep |
| 23 | passenv = HOME TERM CS_API_* OS_* AMULET_* |
| 24 | install_command = |
| 25 | pip install {opts} {packages} |
| 26 | |
| 27 | [testenv:build] |
| 28 | basepython = python3 |
| 29 | passenv=HTTP_PROXY HTTPS_PROXY NO_PROXY |
| 30 | setenv = CHARM_LAYERS_DIR = ../layers |
| 31 | CHARM_INTERFACES_DIR = ../interfaces/ |
| 32 | whitelist_externals = git |
| 33 | charm |
| 34 | rm |
| 35 | mv |
| 36 | commands = |
| 37 | rm -rf release |
| 38 | rm -rf ../interfaces/juju-relation-mysql |
| 39 | rm -rf /tmp/canonical-osm |
| 40 | git clone https://git.launchpad.net/canonical-osm/ /tmp/canonical-osm |
| 41 | mv /tmp/canonical-osm/charms/interfaces/juju-relation-mysql ../interfaces/juju-relation-mysql |
| 42 | charm build . --build-dir /tmp |
| 43 | mv /tmp/ui-k8s/ release/ |
| 44 | |
| 45 | [testenv:lint] |
| 46 | basepython = python3 |
| 47 | deps = |
| 48 | black |
| 49 | yamllint |
| 50 | flake8 |
| 51 | commands = |
| 52 | black --check --diff . --exclude "release/|.tox/" |
| 53 | yamllint . |
| 54 | flake8 reactive/ --max-line-length=100 |
| 55 | |
| 56 | [testenv:pep8] |
| 57 | basepython = python3 |
| 58 | deps=charm-tools |
| 59 | commands = charm-proof |
| 60 | |
| 61 | [testenv:venv] |
| 62 | commands = {posargs} |