File size: 437 Bytes
322b245
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ac741c
322b245
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.ruff]
target-version = "py311"
line-length = 120
extend-exclude = [".venv", "build", "dist", ".superpowers"]

[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "RUF"]
ignore = ["E501"]  # handled by formatter

[tool.ruff.format]
quote-style = "double"

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
addopts = "-m 'not gpu'"
markers = [
    "gpu: requires a GPU (CUDA or MPS); skipped by default",
]