Configure tests to mark chat quality tests & filter unhelpful warnings

- Mark chat quality tests, register custom mark for chat quality
- Filter unhelpful deprecation warnings from within dateparser library
- Error if tests use unregistered marks
This commit is contained in:
Debanjum Singh Solanky
2023-03-14 18:56:14 -06:00
parent c1128a1ad8
commit 7c4d546039
3 changed files with 22 additions and 1 deletions

View File

@@ -95,3 +95,9 @@ warn_unused_ignores = false
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "--strict-markers"
markers = [
"chatquality: Evaluate chatbot capabilities and quality",
]