-
Notifications
You must be signed in to change notification settings - Fork 3
/
tox.ini
123 lines (113 loc) · 2.99 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
[tox]
skipsdist=True
envlist = lint, unit, static, coverage-report
[vars]
src_path = {toxinidir}/src/
tst_path = {toxinidir}/tests/
all_path = {[vars]src_path} {[vars]tst_path}
[testenv]
basepython = python3.10
allowlist_externals=python
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/lib:{[vars]src_path}
PYTHONBREAKPOINT=ipdb.set_trace
PY_COLORS=1
passenv =
PYTHONPATH
[testenv:fmt]
description = Apply coding style standards to code
deps =
black
isort
commands =
isort {[vars]all_path}
black {[vars]all_path}
[testenv:src-docs]
allowlist_externals=sh
setenv =
PYTHONPATH=src
description = Generate documentation for src
deps =
lazydocs
-r{toxinidir}/requirements.txt
commands =
; can't run lazydocs directly due to needing to run it on src/* which produces an invocation error in tox
sh generate-src-docs.sh
[testenv:lint]
description = Check code against coding style standards
deps =
-r{toxinidir}/requirements.txt
-r{[vars]tst_path}/integration/requirements.txt
black
flake8<6.0.0
flake8-docstrings>=1.6
flake8-copyright>=0.2
flake8-builtins>=2.0
flake8-docstrings-complete>=1.0.3
flake8-test-docs>=1.0
; There is an error with version 6.0.0 related to integers and arguments
pyproject-flake8<6.0.0
pep8-naming
isort
codespell
toml
mypy
pylint
pytest
ops
pytest_operator
types-requests
types-PyYAML
pytest_asyncio
pydocstyle>=2.10
commands =
pydocstyle {[vars]src_path}
codespell {toxinidir} --skip {toxinidir}/.git --skip {toxinidir}/.tox \
--skip {toxinidir}/build --skip {toxinidir}/lib --skip {toxinidir}/venv \
--skip {toxinidir}/.mypy_cache --skip {toxinidir}/icon.svg
# pflake8 wrapper supports config from pyproject.toml
pflake8 {[vars]all_path}
isort --check-only --diff {[vars]all_path}
black --check --diff {[vars]all_path}
mypy {[vars]all_path}
pylint {[vars]all_path}
pydocstyle {[vars]src_path}
[testenv:unit]
description = Run unit tests
deps =
pytest
coverage[toml]
-r{toxinidir}/requirements.txt
commands =
coverage run --source={[vars]src_path} \
-m pytest --ignore={[vars]tst_path}integration -v --tb native -s {posargs}
coverage report
[testenv:coverage-report]
description = Create test coverage report
deps =
pytest
coverage[toml]
-r{toxinidir}/requirements.txt
commands =
coverage report
[testenv:integration]
description = Run integration tests
deps =
pytest
juju==3.0.4
ops
pytest-operator
pytest-asyncio
-r{toxinidir}/requirements.txt
-r{[vars]tst_path}integration/requirements.txt
commands =
pytest --tb native --ignore={[vars]tst_path}unit --log-cli-level=INFO -s {posargs}
[testenv:static]
description = Run static analysis tests
deps =
bandit[toml]
-r{toxinidir}/requirements.txt
commands =
bandit -c {toxinidir}/pyproject.toml -r {[vars]src_path} {[vars]tst_path}