From dbba5883f43befdeda997e2d4321dea7e1402c0c Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Tue, 3 Dec 2024 20:29:26 +0530 Subject: [PATCH] fix DATABASE_TYPE for testcases --- code/tests/functional/app_config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/tests/functional/app_config.py b/code/tests/functional/app_config.py index 0dd14b2f6..a072d7f92 100644 --- a/code/tests/functional/app_config.py +++ b/code/tests/functional/app_config.py @@ -13,7 +13,9 @@ class AppConfig: config: dict[str, str | None] = { "APPLICATIONINSIGHTS_ENABLED": "False", "AZURE_AUTH_TYPE": "keys", - "AZURE_BLOB_STORAGE_INFO": '{"accountName": "some-blob-account-name", "containerName": "some-blob-container-name", "accountKey": "' + encoded_account_key + '"}', + "AZURE_BLOB_STORAGE_INFO": '{"accountName": "some-blob-account-name", "containerName": "some-blob-container-name", "accountKey": "' + + encoded_account_key + + '"}', "AZURE_COMPUTER_VISION_KEY": "some-computer-vision-key", "AZURE_CONTENT_SAFETY_ENDPOINT": "some-content-safety-endpoint", "AZURE_CONTENT_SAFETY_KEY": "some-content-safety-key", @@ -80,6 +82,7 @@ class AppConfig: "OPENAI_API_TYPE": None, "OPENAI_API_KEY": None, "OPENAI_API_VERSION": None, + "DATABASE_TYPE": "CosmosDB", } def __init__(self, config_overrides: dict[str, str | None] = {}) -> None: