optcg-deck-builder / pyproject.toml
t22000t's picture
Initial commit: optcg-deck-builder Gradio Space
16eaadc
raw
history blame contribute delete
324 Bytes
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra -q --strict-markers -m 'not network'"
markers = [
"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"]