Add pytest tests to auth

This commit is contained in:
Urtzi Alfaro
2025-07-20 13:48:26 +02:00
parent 608585c72c
commit 351f673318
6 changed files with 2698 additions and 191 deletions

View File

@@ -0,0 +1,19 @@
[pytest]
minversion = 6.0
addopts = -ra -q --disable-warnings
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
markers =
unit: Unit tests
integration: Integration tests
api: API endpoint tests
security: Security tests
performance: Performance tests
slow: Slow running tests
auth: Authentication tests
asyncio_mode = auto
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning