File tree 3 files changed +25
-5
lines changed
3 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ requires-python = ">=3.9"
10
10
readme = " README.md"
11
11
license = { file = " LICENSE" }
12
12
13
- dependencies = [" google-cloud-logging>=3.11.3" , " pydantic>=2.10.3" ]
13
+ dependencies = [
14
+ " google-cloud-logging>=3.11.3" ,
15
+ " pydantic>=2.10.3" ,
16
+ ]
14
17
15
18
[tool .uv ]
16
19
dev-dependencies = [
@@ -21,7 +24,3 @@ dev-dependencies = [
21
24
" pytest>=8.3.4" ,
22
25
" pytest-cov>=6.0.0" ,
23
26
]
24
-
25
- [tool .pytest .ini_options ]
26
- pythonpath = [" ." ]
27
- addopts = [" --import-mode=importlib" ]
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ addopts =
3
+ --cov =.
4
+ --cov-branch
5
+ --cov-fail-under =75
6
+ --cov-report =html
7
+ --cov-report =term-missing
8
+ --import-mode =importlib
9
+
10
+ norecursedirs =
11
+ .*
12
+ __pycache__
13
+ htmlcov
14
+
15
+ pythonpath = " ."
16
+ python_files = test__*.py
17
+ testpaths = tests
Original file line number Diff line number Diff line change @@ -76,3 +76,7 @@ skip-magic-trailing-comma = false
76
76
77
77
# Like Black, automatically detect the appropriate line ending.
78
78
line-ending = " auto"
79
+
80
+ [per-file-ignores ]
81
+ # Ignore all directories named `tests`.
82
+ "tests/**" = [" INP001" , " S101" ]
You can’t perform that action at this time.
0 commit comments