blob: b791e14bad467442cb736e44f1560fb2a0d4ab9f [file] [log] [blame]
David Garciaff8f33e2022-06-13 17:29:53 +02001# Copyright 2022 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[tox]
22skipsdist=True
23skip_missing_interpreters = True
24envlist = lint, unit
25
26[vars]
27src_path = {toxinidir}/src/
28tst_path = {toxinidir}/tests/
David Garciabb641592022-06-14 17:43:09 +020029lib_path = {toxinidir}/lib/charms/osm_nbi
David Garciaff8f33e2022-06-13 17:29:53 +020030all_path = {[vars]src_path} {[vars]tst_path}
31
32[testenv]
33setenv =
34 PYTHONPATH = {toxinidir}:{toxinidir}/lib:{[vars]src_path}
35 PYTHONBREAKPOINT=ipdb.set_trace
36 PY_COLORS=1
37passenv =
38 PYTHONPATH
39 CHARM_BUILD_DIR
40 MODEL_SETTINGS
41
42[testenv:fmt]
43description = Apply coding style standards to code
44deps =
45 black
46 isort
47commands =
48 isort {[vars]all_path}
49 black {[vars]all_path}
50
51[testenv:lint]
52description = Check code against coding style standards
53deps =
54 black
55 flake8
56 flake8-docstrings
57 flake8-copyright
58 flake8-builtins
59 pyproject-flake8
60 pep8-naming
61 isort
62 codespell
63commands =
64 # uncomment the following line if this charm owns a lib
David Garciabb641592022-06-14 17:43:09 +020065 codespell {[vars]lib_path}
David Garciaff8f33e2022-06-13 17:29:53 +020066 codespell {toxinidir}/. --skip {toxinidir}/.git --skip {toxinidir}/.tox \
67 --skip {toxinidir}/build --skip {toxinidir}/lib --skip {toxinidir}/venv \
68 --skip {toxinidir}/.mypy_cache --skip {toxinidir}/icon.svg
69 # pflake8 wrapper supports config from pyproject.toml
70 pflake8 {[vars]all_path}
71 isort --check-only --diff {[vars]all_path}
72 black --check --diff {[vars]all_path}
73
74[testenv:unit]
75description = Run unit tests
76deps =
77 pytest
78 pytest-mock
79 coverage[toml]
80 -r{toxinidir}/requirements.txt
81commands =
David Garciabb641592022-06-14 17:43:09 +020082 coverage run --source={[vars]src_path},{[vars]lib_path} \
David Garciaff8f33e2022-06-13 17:29:53 +020083 -m pytest --ignore={[vars]tst_path}integration -v --tb native -s {posargs}
84 coverage report
85 coverage xml
86
87[testenv:integration]
88description = Run integration tests
89deps =
90 pytest
91 juju
92 pytest-operator
93 -r{toxinidir}/requirements.txt
94commands =
95 pytest -v --tb native --ignore={[vars]tst_path}unit --log-cli-level=INFO -s {posargs}