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()