Merge pull request #1106 from Vaibhav159/vl_moving_test_utils_to_pipecat_package
moving test utils inside of package
This commit is contained in:
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added `test/utils.py` inside of pipecat package.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed an issue where `ElevenLabsTTSService` messages would return a 1009 websocket error by increasing the max message size limit to 16MB.
|
- Fixed an issue where `ElevenLabsTTSService` messages would return a 1009 websocket error by increasing the max message size limit to 16MB.
|
||||||
|
|||||||
0
src/pipecat/tests/__init__.py
Normal file
0
src/pipecat/tests/__init__.py
Normal file
@@ -16,7 +16,7 @@ from pipecat.frames.frames import (
|
|||||||
)
|
)
|
||||||
from pipecat.processors.aggregators.gated import GatedAggregator
|
from pipecat.processors.aggregators.gated import GatedAggregator
|
||||||
from pipecat.processors.aggregators.sentence import SentenceAggregator
|
from pipecat.processors.aggregators.sentence import SentenceAggregator
|
||||||
from tests.utils import run_test
|
from pipecat.tests.utils import run_test
|
||||||
|
|
||||||
|
|
||||||
class TestSentenceAggregator(unittest.IsolatedAsyncioTestCase):
|
class TestSentenceAggregator(unittest.IsolatedAsyncioTestCase):
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ from pipecat.processors.filters.frame_filter import FrameFilter
|
|||||||
from pipecat.processors.filters.function_filter import FunctionFilter
|
from pipecat.processors.filters.function_filter import FunctionFilter
|
||||||
from pipecat.processors.filters.identity_filter import IdentityFilter
|
from pipecat.processors.filters.identity_filter import IdentityFilter
|
||||||
from pipecat.processors.filters.wake_check_filter import WakeCheckFilter
|
from pipecat.processors.filters.wake_check_filter import WakeCheckFilter
|
||||||
from tests.utils import EndTestFrame, run_test
|
from pipecat.tests.utils import EndTestFrame, run_test
|
||||||
|
|
||||||
|
|
||||||
class TestIdentifyFilter(unittest.IsolatedAsyncioTestCase):
|
class TestIdentifyFilter(unittest.IsolatedAsyncioTestCase):
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ from pipecat.pipeline.pipeline import Pipeline
|
|||||||
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
from pipecat.pipeline.task import PipelineParams, PipelineTask
|
||||||
from pipecat.processors.filters.identity_filter import IdentityFilter
|
from pipecat.processors.filters.identity_filter import IdentityFilter
|
||||||
from pipecat.processors.frame_processor import FrameProcessor
|
from pipecat.processors.frame_processor import FrameProcessor
|
||||||
from tests.utils import HeartbeatsObserver, run_test
|
from pipecat.tests.utils import HeartbeatsObserver, run_test
|
||||||
|
|
||||||
|
|
||||||
class TestPipeline(unittest.IsolatedAsyncioTestCase):
|
class TestPipeline(unittest.IsolatedAsyncioTestCase):
|
||||||
|
|||||||
Reference in New Issue
Block a user