17 lines
330 B
TOML
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 = "./" }
|
|
]
|