File: ruff.toml

package info (click to toggle)
python-powerfox 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 680 kB
  • sloc: python: 581; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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...
  "S106", # Allow hardcoded passwords in tests...
  "SLF001", # Tests will access private/protected members...
  "TC002", # pytest doesn't like this one...
]