8000 remove unknown-markers in test_transcribe by sannya-singal · Pull Request #10920 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

remove unknown-markers in test_transcribe #10920

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
May 29, 2024
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
4 changes: 2 additions & 2 deletions tests/aws/services/transcribe/test_transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def is_transcription_done():
("../../files/en-us_video.mp4", "one of the most vital"),
],
)
@markers.aws.unknown
@markers.aws.needs_fixing
def test_transcribe_supported_media_formats(
self, transcribe_create_job, media_file, speech, aws_client
):
Expand All @@ -118,7 +118,7 @@ def _assert_transcript():

retry(_assert_transcript, retries=30, sleep=2)

@markers.aws.unknown
@markers.aws.needs_fixing
def test_transcribe_unsupported_media_format_failure(self, transcribe_create_job, aws_client):
# Ensure transcribing an empty file fails
file_path = new_tmp_file()
Expand Down
Loading
0