8000 remove unknown-markers in test_transcribe · localstack/localstack@8eb681f · GitHub
[go: up one dir, main page]

Skip to content

Commit 8eb681f

Browse files
committed
remove unknown-markers in test_transcribe
1 parent 4473f89 commit 8eb681f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/aws/services/transcribe/test_transcribe.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def is_transcription_done():
9292
("../../files/en-us_video.mp4", "one of the most vital"),
9393
],
9494
)
95-
@markers.aws.unknown
95+
@markers.aws.needs_fixing
9696
def test_transcribe_supported_media_formats(
9797
self, transcribe_create_job, media_file, speech, aws_client
9898
):
@@ -116,9 +116,9 @@ def _assert_transcript():
116116
content = to_str(data["Body"].read())
117117
assert speech in content
118118

119-
retry(_assert_transcript, retries=30, sleep=2)
119+
retry(_assert_transcript, retries=80, sleep=5, sleep_before=5)
120120

121-
@markers.aws.unknown
121+
@markers.aws.needs_fixing
122122
def test_transcribe_unsupported_media_format_failure(self, transcribe_create_job, aws_client):
123123
# Ensure transcribing an empty file fails
124124
file_path = new_tmp_file()

0 commit comments

Comments
 (0)
0