From a6444894f854b7afbe920088994b88c148f60471 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Thu, 3 Apr 2025 08:19:00 +0200 Subject: [PATCH 1/2] Skip flaky transcribe tests --- tests/aws/services/transcribe/test_transcribe.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/aws/services/transcribe/test_transcribe.py b/tests/aws/services/transcribe/test_transcribe.py index 572b1b0a4c0b1..75440b0a04115 100644 --- a/tests/aws/services/transcribe/test_transcribe.py +++ b/tests/aws/services/transcribe/test_transcribe.py @@ -138,6 +138,7 @@ def is_transcription_done(): "$..Error..Code", ] ) + @pytest.mark.skip(reason="flaky") def test_transcribe_happy_path(self, transcribe_create_job, snapshot, aws_client): file_path = os.path.join(BASEDIR, "../../files/en-gb.wav") job_name = transcribe_create_job(audio_file=file_path) @@ -182,6 +183,7 @@ def is_transcription_done(): ], ) @markers.aws.needs_fixing + @pytest.mark.skip(reason="flaky") def test_transcribe_supported_media_formats( self, transcribe_create_job, media_file, speech, aws_client ): From 76dcfaca42849cfb9de694b33fdda1e93415b553 Mon Sep 17 00:00:00 2001 From: Misha Tiurin Date: Thu, 3 Apr 2025 08:40:03 +0200 Subject: [PATCH 2/2] Skip test_transcribe_start_job that failed on PR run It was also skipped before in #12260 --- tests/aws/services/transcribe/test_transcribe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/aws/services/transcribe/test_transcribe.py b/tests/aws/services/transcribe/test_transcribe.py index 75440b0a04115..d52ac48c7e886 100644 --- a/tests/aws/services/transcribe/test_transcribe.py +++ b/tests/aws/services/transcribe/test_transcribe.py @@ -324,6 +324,7 @@ def test_failing_start_transcription_job(self, s3_bucket, snapshot, aws_client): (None, None), # without output bucket and output key ], ) + @pytest.mark.skip(reason="flaky") def test_transcribe_start_job( self, output_bucket,