Skip to content

Commit d0e97b9

Browse files
committed
chore: Updates for ruff and pytest configurations
1 parent d8bbbc7 commit d0e97b9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

pytest.ini

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ norecursedirs=dist build .tox .eggs fixtures
33
addopts=
44
--doctest-modules
55
--import-mode importlib
6+
--ignore tests/data
67
consider_namespace_packages=true
78
filterwarnings=
89
## upstream

ruff.toml

+2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ ignore = [
2020
"ISC001",
2121
"ISC002",
2222
]
23+
exclude = ["tests/data/**/*.py"]
2324

2425
[format]
2526
# Enable preview, required for quote-style = "preserve"
2627
preview = true
2728
# https://docs.astral.sh/ruff/settings/#format-quote-style
2829
quote-style = "preserve"
30+
exclude = ["tests/data/**/*.py"]

0 commit comments

Comments
 (0)