-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.19 KB
/
pyproject.toml
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
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
[project]
name = "o11y-tester"
version = "0.0" # this is in fact irrelevant
requires-python = "==3.10.*" # https://packages.ubuntu.com/jammy/python3
dependencies = [
"ops",
]
[project.optional-dependencies]
dev = [
# Linting
"ruff",
"codespell",
# Static
"pyright",
# Unit
"pytest",
"coverage[toml]",
"ops[testing]",
# Integration
"juju",
"pytest-operator",
]
# Testing tools configuration
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
# Linting tools configuration
[tool.ruff]
line-length = 99
extend-exclude = ["__pycache__", "*.egg_info"]
[tool.ruff.lint]
select = ["E", "W", "F", "C", "N", "R", "D"]
# Ignore D107 Missing docstring in __init__
ignore = ["W505", "D107", "C901", "N818", "RET504"]
# D100, D101, D102, D103: Ignore missing docstrings in tests
per-file-ignores = {"tests/*" = ["D100","D101","D102","D103"]}
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pyright]
extraPaths = ["lib"]
pythonVersion = "3.8"
pythonPlatform = "All"
[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "--tb=native --verbose --capture=no --log-cli-level=INFO"