python-detector-worker/tests/performance/__init__.py
2025-09-12 18:55:23 +07:00

19 lines
No EOL
449 B
Python

"""
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"
]