mirror of
https://github.com/wizarrrr/wizarr.git
synced 2025-12-23 23:59:23 -05:00
- Added `identity_resolution.py` for resolving Wizarr users and identities. - Created `ingestion.py` to handle recording and updating activity events. - Introduced `maintenance.py` for cleanup and session management tasks. - Developed `queries.py` for read-oriented operations on activity sessions. - Implemented background tasks in `activity.py` for scheduled maintenance. - Added tests for activity services and blueprint to ensure functionality.
8 lines
244 B
INI
8 lines
244 B
INI
[pytest]
|
|
minversion = 6.0
|
|
addopts = -ra -q --tb=short
|
|
testpaths = tests
|
|
python_files = test_*.py
|
|
filterwarnings =
|
|
ignore:jsonschema.RefResolver is deprecated:DeprecationWarning
|
|
# Playwright will be enabled via conftest.py for E2E tests only |