File: ruff.toml

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

[lint]
extend-ignore = [
  "S101", # Use of assert detected. As these are tests...
  "SLF001", # Tests will access private/protected members...
]

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