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/integration/__init__.py
Normal file
19
tests/integration/__init__.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
"""
|
||||
Integration tests for the detector worker application.
|
||||
|
||||
This package contains integration tests that verify the interaction
|
||||
between multiple components and end-to-end workflows.
|
||||
"""
|
||||
|
||||
# Integration test modules
|
||||
from . import (
|
||||
test_complete_detection_workflow,
|
||||
test_websocket_protocol,
|
||||
test_pipeline_integration
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"test_complete_detection_workflow",
|
||||
"test_websocket_protocol",
|
||||
"test_pipeline_integration"
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue