omegafox/tests/pyproject.toml
daijro 68216153f3 Add Playwright tests
Adds Playwright's async tests to ensure that functionality is not broken.
2024-11-03 06:14:39 -06:00

19 lines
438 B
TOML

[tool.pytest.ini_options]
addopts = "-Wall -rsx -vv -s"
markers = [
"skip_browser",
"only_browser",
"skip_platform",
"only_platform"
]
junit_family = "xunit2"
asyncio_mode = "auto"
[tool.pyright]
pythonVersion = "3.8"
reportMissingImports = false
reportTypedDictNotRequiredAccess = false
reportCallInDefaultInitializer = true
reportOptionalSubscript = false
reportUnboundVariable = false
strictParameterNoneValue = false