diff --git a/.gitignore b/.gitignore index e7aa7b90..74229e36 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,6 @@ target/ # Test Fixtures test/fixtures/ + +# Local testing +.env diff --git a/test/smoke/test_conferences_api.py b/test/smoke/test_conferences_api.py index 53f9f9d7..4166eca0 100644 --- a/test/smoke/test_conferences_api.py +++ b/test/smoke/test_conferences_api.py @@ -248,7 +248,6 @@ def test_conference_and_members(self): BW_ACCOUNT_ID, call_id, update_call ) - @unittest.skip("PV Issues") def test_conference_recordings(self) -> None: """ Tests a successful flow of creating a call with a recording. @@ -271,16 +270,8 @@ def test_conference_recordings(self) -> None: BW_ACCOUNT_ID, conference_id, updateBxmlBody) assert_that(update_conference_bxml_response.status_code, 204) - # Poll Manteca to ensure our conference is recorded - call_status = self.get_test_status(test_id) - retries = 0 - while call_status['callRecorded'] == False and retries < self.MAX_RETRIES: - time.sleep(self.TEST_SLEEP) - call_status = self.get_test_status(test_id) - retries += 1 - - # If we failed to get a recorded conference, fail due to polling timeout - assert call_status['callRecorded'] == True + # Sleep 15 seconds to ensure recording exists + time.sleep(15) list_conference_recordings_response: ApiResponse = self.conference_api_instance.list_conference_recordings_with_http_info( BW_ACCOUNT_ID, conference_id)