nvim/pyproject.toml
2023-01-13 18:29:49 +01:00

17 lines
330 B
TOML

# pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.pyright]
venv = "venv"
venvPath = './'
reportOptionalMemberAccess = 'warning'
reportGeneralTypeIssues = 'warning'
analyzeUnannotatedFunctions = 'false'
executionEnvironments = [
{ root = "./" }
]