@@ -215,6 +215,7 @@ def get_test_status(self, test_id: str) -> Dict:
215215 )
216216 return json .loads (response .data )
217217
218+ @unittest .skip ("Manteca currently broken" )
218219 def test_successful_call_recording (self ) -> None :
219220 """
220221 Tests a successful flow of creating a call with a recording.
@@ -309,6 +310,7 @@ def test_successful_call_recording(self) -> None:
309310 call_recordings = self .recordings_api_instance .list_call_recordings (BW_ACCOUNT_ID , call_id )
310311 assert len (call_recordings ) == 0
311312
313+ @unittest .skip ("Manteca currently broken" )
312314 def test_successful_update_active_recording (self ) -> None :
313315 """
314316 Tests updating the recording for a call that is currently active.
@@ -345,6 +347,7 @@ def test_successful_update_active_recording(self) -> None:
345347 update_call = UpdateCall (state = CallStateEnum ('completed' ))
346348 self .calls_api_instance .update_call (BW_ACCOUNT_ID , call_id , update_call )
347349
350+ @unittest .skip ("Manteca currently broken" )
348351 def test_invalid_list_call_recordings (self ) -> None :
349352 """
350353 Tests invalid flows for list_call_recordings
@@ -365,6 +368,7 @@ def test_invalid_list_call_recordings(self) -> None:
365368 # This should probably be a 404, but actually returns an empty list
366369 assert self .recordings_api_instance .list_call_recordings (BW_ACCOUNT_ID , "not a call id" ) == []
367370
371+ @unittest .skip ("Manteca currently broken" )
368372 def test_invalid_get_call_recording (self ) -> None :
369373 """
370374 Tests invalid flows for get_call_recording
@@ -389,6 +393,7 @@ def test_invalid_get_call_recording(self) -> None:
389393 with self .assertRaises (NotFoundException ):
390394 self .recordings_api_instance .get_call_recording (BW_ACCOUNT_ID , call_id , "not a recording id" )
391395
396+ @unittest .skip ("Manteca currently broken" )
392397 def test_invalid_download_call_recording (self ) -> None :
393398 """
394399 Tests invalid flows for download_call_recording
@@ -413,6 +418,7 @@ def test_invalid_download_call_recording(self) -> None:
413418 with self .assertRaises (NotFoundException ):
414419 self .recordings_api_instance .download_call_recording (BW_ACCOUNT_ID , call_id , "not a recording id" )
415420
421+ @unittest .skip ("Manteca currently broken" )
416422 def test_invalid_transcribe_call_recording (self ) -> None :
417423 """
418424 Tests invalid flows for transcribe_call_recording
@@ -443,6 +449,7 @@ def test_invalid_transcribe_call_recording(self) -> None:
443449 # self.recordings_api_instance.transcribe_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id", transcribe_recording)
444450
445451
452+ @unittest .skip ("Manteca currently broken" )
446453 def test_invalid_get_call_transcription (self ) -> None :
447454 """
448455 Tests invalid flows for get_call_transcription
@@ -483,6 +490,7 @@ def test_invalid_get_call_transcription(self) -> None:
483490 with self .assertRaises (NotFoundException ):
484491 self .recordings_api_instance .get_call_transcription (BW_ACCOUNT_ID , call_id , "not a recording id" )
485492
493+ @unittest .skip ("Manteca currently broken" )
486494 def test_invalid_delete_call_transcription (self ) -> None :
487495 """
488496 Tests invalid flows for delete_call_transcription
@@ -523,6 +531,7 @@ def test_invalid_delete_call_transcription(self) -> None:
523531 with self .assertRaises (NotFoundException ):
524532 self .recordings_api_instance .delete_call_transcription (BW_ACCOUNT_ID , call_id , "not a recording id" )
525533
534+ @unittest .skip ("Manteca currently broken" )
526535 def test_invalid_delete_recording_media (self ) -> None :
527536 """
528537 Tests invalid flows for delete_recording_media
@@ -547,6 +556,7 @@ def test_invalid_delete_recording_media(self) -> None:
547556 with self .assertRaises (NotFoundException ):
548557 self .recordings_api_instance .delete_recording_media (BW_ACCOUNT_ID , call_id , "not a recording id" )
549558
559+ @unittest .skip ("Manteca currently broken" )
550560 def test_invalid_delete_recording (self ) -> None :
551561 """
552562 Tests invalid flows for delete_recording
@@ -571,6 +581,7 @@ def test_invalid_delete_recording(self) -> None:
571581 with self .assertRaises (NotFoundException ):
572582 self .recordings_api_instance .delete_recording (BW_ACCOUNT_ID , call_id , "not a recording id" )
573583
584+ @unittest .skip ("Manteca currently broken" )
574585 def test_invalid_update_call_recording_state (self ) -> None :
575586 """
576587 Tests invalid flows for update_call_recording_state
0 commit comments