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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

### Changed

- ruff: allow asserts and unused args in test files
- update dependencies esp. trivy (0.73.0.1) and ruff (0.16.2)


Expand Down
7 changes: 6 additions & 1 deletion src/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ ignore = [
"G004", # Logging statement uses f-string
"ISC001", # single-line-implicit-string-concatenation
"PD", # opinionated linting for pandas code
"S101", # use of assert detected
"TRY003", # Avoid specifying long messages outside the exception class
"CPY001", # Missing copyright notice
]

[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = [
"S101", # asserts allowed in tests
"ARG", # unused function args (pytest fixtures)
]
Loading