9 lines
379 B
Python
9 lines
379 B
Python
import os
|
|
|
|
# Get the URL of the instance under test
|
|
HOSTNAME = os.environ.get('BOK_CHOY_HOSTNAME', 'localhost')
|
|
CMS_PORT = os.environ.get('BOK_CHOY_CMS_PORT', 8031)
|
|
LMS_PORT = os.environ.get('BOK_CHOY_LMS_PORT', 8003)
|
|
BASE_URL = os.environ.get('test_url', 'http://{}:{}'.format(HOSTNAME, CMS_PORT))
|
|
LMS_URL = os.environ.get('test_url', 'http://{}:{}'.format(HOSTNAME, LMS_PORT))
|