Skip to content

Commit 073eab9

Browse files
skip flaky tests in transcribe (#12509)
1 parent f1ef65a commit 073eab9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/aws/services/transcribe/test_transcribe.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def transcribe_snapshot_transformer(snapshot):
9292
snapshot.add_transformer(snapshot.transform.transcribe_api())
9393

9494

95+
@pytest.mark.skip(reason="flaky")
9596
class TestTranscribe:
9697
@pytest.fixture(scope="class", autouse=True)
9798
def pre_install_dependencies(self):
@@ -138,7 +139,6 @@ def is_transcription_done():
138139
"$..Error..Code",
139140
]
140141
)
141-
@pytest.mark.skip(reason="flaky")
142142
def test_transcribe_happy_path(self, transcribe_create_job, snapshot, aws_client):
143143
file_path = os.path.join(BASEDIR, "../../files/en-gb.wav")
144144
job_name = transcribe_create_job(audio_file=file_path)
@@ -183,7 +183,6 @@ def is_transcription_done():
183183
],
184184
)
185185
@markers.aws.needs_fixing
186-
@pytest.mark.skip(reason="flaky")
187186
def test_transcribe_supported_media_formats(
188187
self, transcribe_create_job, media_file, speech, aws_client
189188
):
@@ -324,7 +323,6 @@ def test_failing_start_transcription_job(self, s3_bucket, snapshot, aws_client):
324323
(None, None), # without output bucket and output key
325324
],
326325
)
327-
@pytest.mark.skip(reason="flaky")
328326
def test_transcribe_start_job(
329327
self,
330328
output_bucket,

0 commit comments

Comments
 (0)