Merge pull request #1106 from Vaibhav159/vl_moving_test_utils_to_pipecat_package

moving test utils inside of package
This commit is contained in:
Aleix Conchillo Flaqué
2025-01-29 09:44:34 -08:00
committed by GitHub
6 changed files with 7 additions and 3 deletions

View File

@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- Added `test/utils.py` inside of pipecat package.
### Fixed
- Fixed an issue where `ElevenLabsTTSService` messages would return a 1009 websocket error by increasing the max message size limit to 16MB.

View File

View File

@@ -16,7 +16,7 @@ from pipecat.frames.frames import (
)
from pipecat.processors.aggregators.gated import GatedAggregator
from pipecat.processors.aggregators.sentence import SentenceAggregator
from tests.utils import run_test
from pipecat.tests.utils import run_test
class TestSentenceAggregator(unittest.IsolatedAsyncioTestCase):

View File

@@ -19,7 +19,7 @@ from pipecat.processors.filters.frame_filter import FrameFilter
from pipecat.processors.filters.function_filter import FunctionFilter
from pipecat.processors.filters.identity_filter import IdentityFilter
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):

View File

@@ -13,7 +13,7 @@ from pipecat.pipeline.pipeline import Pipeline
from pipecat.pipeline.task import PipelineParams, PipelineTask
from pipecat.processors.filters.identity_filter import IdentityFilter
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):