[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"]