Skip to content

Commit

Permalink
fix DATABASE_TYPE for testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavan Kumar committed Dec 3, 2024
1 parent 11d78d0 commit dbba588
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/tests/functional/app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit dbba588

Please sign in to comment.