__init__.py 1 KB
Newer Older
1 2
import os

3

4
# Get the URL of the Studio instance under test
5
STUDIO_BASE_URL = os.environ.get('studio_url', 'http://localhost:8031')
6

7 8 9
# Get the URL of the LMS instance under test
LMS_BASE_URL = os.environ.get('lms_url', 'http://localhost:8003')

10 11
# Get the URL of the XQueue stub used in the test
XQUEUE_STUB_URL = os.environ.get('xqueue_url', 'http://localhost:8040')
12 13 14

# Get the URL of the Ora stub used in the test
ORA_STUB_URL = os.environ.get('ora_url', 'http://localhost:8041')
15 16 17

# Get the URL of the comments service stub used in the test
COMMENTS_STUB_URL = os.environ.get('comments_url', 'http://localhost:4567')
18 19 20

# Get the URL of the EdxNotes service stub used in the test
EDXNOTES_STUB_URL = os.environ.get('edxnotes_url', 'http://localhost:8042')
21

22
# Get the URL of the Programs service stub used in the test
23
PROGRAMS_STUB_URL = os.environ.get('programs_url', 'http://localhost:8090')
24 25 26

# Get the URL of the Catalog service stub used in the test
CATALOG_STUB_URL = os.environ.get('catalog_url', 'http://localhost:8091')