Spaces:
Running on Zero
Running on Zero
| [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", | |
| ] | |