14 lines
547 B
Python
14 lines
547 B
Python
"""
|
|
This file is intended to provide settings for the mongodb connection used for tests.
|
|
The settings can be provided by environment variables in the shell running the tests. This reads
|
|
in a variety of environment variables but provides sensible defaults in case those env var
|
|
overrides don't exist
|
|
"""
|
|
|
|
|
|
import os
|
|
|
|
MONGO_PORT_NUM = int(os.environ.get('EDXAPP_TEST_MONGO_PORT', '27017'))
|
|
MONGO_HOST = os.environ.get('EDXAPP_TEST_MONGO_HOST',
|
|
'edx.devstack.mongo' if 'BOK_CHOY_HOSTNAME' in os.environ else 'localhost')
|