Spaces:
Sleeping
Sleeping
File size: 309 Bytes
c1fa0b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | [tool.pytest.ini_options]
markers = [
"integration: needs the real model downloaded — run locally, excluded by default",
]
# Integration tests are opt-in: plain `pytest` (and CI) skips them.
addopts = "-m 'not integration'"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
|