Added feedback check for AI-assessment test Added peer assessment feedback test Added tests for peer grading module Added stub peer grading module service Updated Studio/LMS page objects and tests to use bok-choy v0.1.0 Added LMS bok-choy tests from e2e repo Add bok-choy tests for peer grading module, including calibration.
11 lines
361 B
Python
11 lines
361 B
Python
import os
|
|
|
|
# Get the URL of the instance under test
|
|
STUDIO_BASE_URL = os.environ.get('studio_url', 'http://localhost:8031')
|
|
|
|
# Get the URL of the XQueue stub used in the test
|
|
XQUEUE_STUB_URL = os.environ.get('xqueue_url', 'http://localhost:8040')
|
|
|
|
# Get the URL of the Ora stub used in the test
|
|
ORA_STUB_URL = os.environ.get('ora_url', 'http://localhost:8041')
|