add auto_create_bucket defaulting to false, enabled for tests

This commit is contained in:
Matthew Farrellee 2025-08-21 19:53:26 -04:00
parent d67d679baf
commit 72036891e8
5 changed files with 47 additions and 0 deletions

View file

@ -37,6 +37,7 @@ def s3_config(tmp_path):
return S3FilesImplConfig(
bucket_name="test-bucket",
region="not-a-region",
auto_create_bucket=True,
metadata_store=SqliteSqlStoreConfig(db_path=db_path.as_posix()),
)