blob: 354632fd9807ce91d6ddcf45c90b42492fc6cb34 [file] [log] [blame]
sousaeduaef42592021-01-20 16:09:48 +00001# 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]
23envlist = pep8
24skipsdist = True
25
26[testenv]
27setenv = VIRTUAL_ENV={envdir}
28 PYTHONHASHSEED=0
29whitelist_externals = juju
30passenv = HOME TERM CS_API_* OS_* AMULET_*
31deps = -r{toxinidir}/test-requirements.txt
32install_command =
33 pip install {opts} {packages}
34
35[testenv:build]
36basepython = python3
37passenv=HTTP_PROXY HTTPS_PROXY NO_PROXY
38setenv = CHARM_LAYERS_DIR = /tmp
39 CHARM_INTERFACES_DIR = /tmp/canonical-osm/charms/interfaces/
40whitelist_externals = git
41 charm
42 rm
43 mv
44commands =
45 rm -rf /tmp/canonical-osm /tmp/osm-common
46 rm -rf release/
47 git clone https://git.launchpad.net/canonical-osm /tmp/canonical-osm
48 git clone https://git.launchpad.net/charm-osm-common /tmp/osm-common
49 git clone https://git.launchpad.net/interface-mongodb /tmp/canonical-osm/charms/interfaces/mongodb
50 charm build . --build-dir /tmp
51 mv /tmp/mongodb-k8s/ release/
52
53[testenv:black]
54basepython = python3
55deps =
56 black
57 yamllint
58 flake8
59commands =
60 black --check --diff .
61 yamllint .
62 flake8 reactive/ --max-line-length=88
63 flake8 tests/ --max-line-length=88
64
65[testenv:pep8]
66basepython = python3
67deps=charm-tools
68commands = charm-proof
69
70[testenv:func-noop]
71basepython = python3
72commands =
73 true
74
75[testenv:func]
76basepython = python3
77commands =
78 functest-run-suite
79 functest-prepare -m mongo-ha
80 juju switch mongo-ha
81 functest-deploy -m mongo-ha -b ./tests/bundles/mongodb-ha.yaml
82 ; functest-test -m mongo-ha
83 functest-destroy -m mongo-ha
84
85
86[testenv:func-smoke]
87basepython = python3
88commands = functest-run-suite --keep-model --smoke
89
90[testenv:venv]
91commands = {posargs}