Refactor: PHASE 8: Testing & Integration

This commit is contained in:
ziesorx 2025-09-12 18:55:23 +07:00
parent af34f4fd08
commit 9e8c6804a7
32 changed files with 17128 additions and 0 deletions

View file

@ -0,0 +1,19 @@
"""
Performance tests for the detector worker application.
This package contains performance benchmarks and load tests to ensure
the application meets scalability and throughput requirements.
"""
# Performance test modules
from . import (
test_detection_performance,
test_websocket_performance,
test_storage_performance
)
__all__ = [
"test_detection_performance",
"test_websocket_performance",
"test_storage_performance"
]