-
Notifications
You must be signed in to change notification settings - Fork 450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MAINT: Separating integration test local .env #817
base: main
Are you sure you want to change the base?
MAINT: Separating integration test local .env #817
Conversation
AZURE_SQL_DB_CONNECTION_STRING = ${AZURE_SQL_DB_CONNECTION_STRING_TEST} | ||
AZURE_STORAGE_ACCOUNT_DB_DATA_CONTAINER_URL=${AZURE_STORAGE_ACCOUNT_DB_DATA_CONTAINER_URL_TEST} | ||
|
||
GLOBAL_MEMORY_LABELS = {"username": "integration-test"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe op_name
is a better key name. I expect the username to be different for whoever running the integ tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not both?
@@ -0,0 +1,29 @@ | |||
############### | |||
# This is .env.local file is used for integration tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT
# This is .env.local file is used for integration tests | |
# This .env.local file is used for integration tests |
OPENAI_CHAT_KEY=${AZURE_OPENAI_INTEGRATION_TEST_KEY} | ||
OPENAI_CHAT_MODEL="gpt-4o" | ||
|
||
OPENAI_DALLE_ENDPOINT = ${OPENAI_DALLE_ENDPOINT2} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OPENAI_DALLE_ENDPOINT = ${OPENAI_DALLE_ENDPOINT2} | |
OPENAI_DALLE_ENDPOINT = ${OPENAI_DALLE_ENDPOINT2} |
AZURE_SQL_DB_CONNECTION_STRING = ${AZURE_SQL_DB_CONNECTION_STRING_TEST} | ||
AZURE_STORAGE_ACCOUNT_DB_DATA_CONTAINER_URL=${AZURE_STORAGE_ACCOUNT_DB_DATA_CONTAINER_URL_TEST} | ||
|
||
GLOBAL_MEMORY_LABELS = {"username": "integration-test"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not both?
Previously, I just used our .env_example file, but I created a new file here to separate out how we configure integration tests.