Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pylint = "4.0.8"
pytest = "9.1.1"
pytest-asyncio = "1.4.0"
pytest-cov = "7.1.0"
ruff = "0.15.22"
ruff = "0.16.8"
safety = "3.8.1"
yamllint = "1.38.0"
syrupy = "5.5.3"
Expand Down Expand Up @@ -138,6 +138,7 @@ asyncio_mode = "auto"
ignore = [
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"COM812", # Conflicts with other rules
"CPY001", # This project does not use copyright headers
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
Expand Down
1 change: 1 addition & 0 deletions tests/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ lint.extend-ignore = [
"SLF001", # Tests will access private/protected members...
"TC002", # pytest doesn't like this one...
"PLR0913", # we're overwriting function that has many arguments
"PLR0917", # parametrized tests take many positional fixtures
]
Loading