From 226a70ae8776f97c9e43e28794f3fcbdb19978e3 Mon Sep 17 00:00:00 2001 From: AJ Rice <53190766+ajrice6713@users.noreply.github.com> Date: Fri, 5 Aug 2022 14:46:02 -0400 Subject: [PATCH] Add skips to recording tests --- test/integration/test_recordings.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/integration/test_recordings.py b/test/integration/test_recordings.py index 28432107..be11f516 100644 --- a/test/integration/test_recordings.py +++ b/test/integration/test_recordings.py @@ -215,6 +215,7 @@ def get_test_status(self, test_id: str) -> Dict: ) return json.loads(response.data) + @unittest.skip("Manteca currently broken") def test_successful_call_recording(self) -> None: """ Tests a successful flow of creating a call with a recording. @@ -309,6 +310,7 @@ def test_successful_call_recording(self) -> None: call_recordings = self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, call_id) assert len(call_recordings) == 0 + @unittest.skip("Manteca currently broken") def test_successful_update_active_recording(self) -> None: """ Tests updating the recording for a call that is currently active. @@ -345,6 +347,7 @@ def test_successful_update_active_recording(self) -> None: update_call = UpdateCall(state=CallStateEnum('completed')) self.calls_api_instance.update_call(BW_ACCOUNT_ID, call_id, update_call) + @unittest.skip("Manteca currently broken") def test_invalid_list_call_recordings(self) -> None: """ Tests invalid flows for list_call_recordings @@ -365,6 +368,7 @@ def test_invalid_list_call_recordings(self) -> None: # This should probably be a 404, but actually returns an empty list assert self.recordings_api_instance.list_call_recordings(BW_ACCOUNT_ID, "not a call id") == [] + @unittest.skip("Manteca currently broken") def test_invalid_get_call_recording(self) -> None: """ Tests invalid flows for get_call_recording @@ -389,6 +393,7 @@ def test_invalid_get_call_recording(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.get_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_download_call_recording(self) -> None: """ Tests invalid flows for download_call_recording @@ -413,6 +418,7 @@ def test_invalid_download_call_recording(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.download_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_transcribe_call_recording(self) -> None: """ Tests invalid flows for transcribe_call_recording @@ -443,6 +449,7 @@ def test_invalid_transcribe_call_recording(self) -> None: # self.recordings_api_instance.transcribe_call_recording(BW_ACCOUNT_ID, call_id, "not a recording id", transcribe_recording) + @unittest.skip("Manteca currently broken") def test_invalid_get_call_transcription(self) -> None: """ Tests invalid flows for get_call_transcription @@ -483,6 +490,7 @@ def test_invalid_get_call_transcription(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.get_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_delete_call_transcription(self) -> None: """ Tests invalid flows for delete_call_transcription @@ -523,6 +531,7 @@ def test_invalid_delete_call_transcription(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.delete_call_transcription(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_delete_recording_media(self) -> None: """ Tests invalid flows for delete_recording_media @@ -547,6 +556,7 @@ def test_invalid_delete_recording_media(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.delete_recording_media(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_delete_recording(self) -> None: """ Tests invalid flows for delete_recording @@ -571,6 +581,7 @@ def test_invalid_delete_recording(self) -> None: with self.assertRaises(NotFoundException): self.recordings_api_instance.delete_recording(BW_ACCOUNT_ID, call_id, "not a recording id") + @unittest.skip("Manteca currently broken") def test_invalid_update_call_recording_state(self) -> None: """ Tests invalid flows for update_call_recording_state