optcg-explorer / pyproject.toml
t22000t's picture
Initial commit: optcg-explorer Gradio Space
3ab07bd
raw
history blame contribute delete
412 Bytes
[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"]