File: ruff.toml

package info (click to toggle)
python-aiomealie 0.9.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,848 kB
  • sloc: python: 1,119; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 452 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This extend our general Ruff rules specifically for tests
extend = "../pyproject.toml"

lint.extend-select = [
  "PT", # Use @pytest.fixture without parentheses
]

lint.extend-ignore = [
  "S101", # Use of assert detected. As these are tests...
  "S105", # Detection of passwords...
  "S106", # Detection of passwords...
  "SLF001", # Tests will access private/protected members...
  "PLR0913", # we're overwriting function that has many arguments
]