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

19 lines
No EOL
447 B
Python

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