10000 Skip flaky transcribe tests by tiurin · Pull Request #12473 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Skip flaky transcribe tests #12473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/aws/services/transcribe/test_transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
):
Expand Down Expand Up @@ -322,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,
Expand Down
Loading
0