From 0c9537975cf72fd5f36afc7616793fdf459c0bd8 Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 28 Oct 2024 19:43:37 +0000 Subject: [PATCH] updated bucket name --- shared/datastore/tests/integration_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/datastore/tests/integration_test.py b/shared/datastore/tests/integration_test.py index b8277c9..959d8b1 100644 --- a/shared/datastore/tests/integration_test.py +++ b/shared/datastore/tests/integration_test.py @@ -11,12 +11,12 @@ from testcontainers.minio import MinioContainer from shared.datastore import connect_minio, get, put from shared.utils import setup_logging +MINIO_BUCKET_NAME = 'test-bucket' minio = MinioContainer() -MINIO_BUCKET_NAME = 'visual-critical-discourse-analysis' @pytest.fixture(scope='module', autouse=True) -def setup(request): +def setup(request: pytest.FixtureRequest): """Setup function for datastore module integration tests.""" # start minio minio.start()