File: ruff.toml

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

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

extend-ignore = [
  "S101", # Use of assert detected. As these are tests...
  "SLF001", # Tests will access private/protected members...
  "TCH002", # pytest doesn't like this one...
]