Refactor: PHASE 8: Testing & Integration
This commit is contained in:
parent
af34f4fd08
commit
9e8c6804a7
32 changed files with 17128 additions and 0 deletions
19
tests/performance/__init__.py
Normal file
19
tests/performance/__init__.py
Normal 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"
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue