-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtox.ini
More file actions
84 lines (72 loc) · 2.28 KB
/
Copy pathtox.ini
File metadata and controls
84 lines (72 loc) · 2.28 KB
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
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
[tox]
no_package = True
skip_missing_interpreters = True
env_list = format, lint, static, unit, unit-pydantic-v1
min_version = 4.0.0
[vars]
src_path = {toxinidir}/src/
lib_path = {toxinidir}/lib/
unit_test_path = {toxinidir}/tests/unit/
integration_test_path = {toxinidir}/tests/integration/
all_path = {[vars]src_path} {[vars]unit_test_path} {[vars]integration_test_path} {[vars]lib_path}
[testenv]
runner = uv-venv-lock-runner
with_dev = true
set_env =
PYTHONPATH = {tox_root}/lib:{[vars]src_path}
PYTHONBREAKPOINT=pdb.set_trace
PY_COLORS=1
deps =
.
dependency_groups =
dev
test
pass_env =
PYTHONPATH
CHARM_BUILD_DIR
MODEL_SETTINGS
[testenv:format]
description = Apply coding style standards to code
commands =
ruff check --fix
[testenv:lint]
description = Check code against coding style standards
change_dir = {tox_root}
commands =
codespell {tox_root}
ruff check
ruff format --check
[testenv:static]
description = Run static type checks
commands =
pyright
[testenv:unit]
description = Run unit tests
commands =
coverage run --source={[vars]lib_path} -m pytest {[vars]unit_test_path} -v --tb native -s {posargs}
coverage report
[testenv:unit-pydantic-v1]
description = Run unit tests with Pydantic v1
commands =
uv pip install "pydantic<2.0.0"
coverage run --source={[vars]lib_path} -m pytest {[vars]unit_test_path} -v --tb native -s {posargs}
coverage report
[testenv:integration-v2]
description = Run integration tests
commands =
pytest --asyncio-mode=auto -v --tb native {[vars]integration_test_path}/v2 --log-cli-level=INFO -s {posargs}
[testenv:integration-v3]
description = Run integration tests
commands =
pytest --asyncio-mode=auto -v --tb native {[vars]integration_test_path}/v3 --log-cli-level=INFO -s {posargs}
[testenv:integration-v4]
description = Run integration tests
commands =
pytest --asyncio-mode=auto -v --tb native {[vars]integration_test_path}/v4 --log-cli-level=INFO -s {posargs}
[testenv:integration-v4-pydantic-v1]
description = Run integration tests with Pydantic v1
commands =
uv pip install "pydantic<2.0.0"
pytest --asyncio-mode=auto -v --tb native {[vars]integration_test_path}/v4 --log-cli-level=INFO -s {posargs}