19 lines
No EOL
449 B
Python
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"
|
|
] |