Spaces:
Sleeping
Sleeping
File size: 324 Bytes
16eaadc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [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"]
|