Spaces:
Sleeping
Sleeping
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| addopts = "-ra -q --strict-markers -m 'not model and not network'" | |
| markers = [ | |
| "model: tests that load the embedding model (opt-in via `-m model`)", | |
| "network: tests that hit the network (opt-in via `-m network`)", | |
| ] | |
| [tool.ruff] | |
| line-length = 100 | |
| target-version = "py310" | |
| [tool.ruff.lint] | |
| select = ["E", "F", "W", "I", "B", "UP", "SIM"] | |
| ignore = ["E501"] | |