8000 Use region-agnostic bucket create for Transcribe tests by viren-nadkarni · Pull Request #9318 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Use region-agnostic bucket create for Transcribe tests #9318

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 1 commit into from
Oct 10, 2023
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
Use region-agnostic bucket create for Transcribe tests
  • Loading branch information
viren-nadkarni committed Oct 9, 2023
commit 87ea5c7af4ae7b67ce9ae438b66b9be7f8e629f8
3 changes: 2 additions & 1 deletion tests/aws/services/transcribe/test_transcribe.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ def test_transcribe_start_job(
output_bucket,
output_key,
s3_bucket,
s3_create_bucket,
cleanups,
snapshot,
aws_client,
Expand All @@ -263,7 +264,7 @@ def _cleanup():

if output_bucket is not None:
params["OutputBucketName"] = output_bucket
aws_client.s3.create_bucket(Bucket=output_bucket)
s3_create_bucket(Bucket=output_bucket)
cleanups.append(_cleanup)
if output_key is not None:
params["OutputKey"] = output_key
Expand Down
0