Skip to content

Commit

Permalink
fix: integration tests settings
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Oct 15, 2024
1 parent 2b60e59 commit a41d9cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions eox_theming/management/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

from eox_theming.management import views

app_name = 'eox_theming' # pylint: disable=invalid-name

urlpatterns = [
re_path(r'^eox-info$', views.info_view, name='eox-info'),
]
2 changes: 1 addition & 1 deletion eox_theming/settings/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ def plugin_settings(settings): # pylint: disable=function-redefined
# Integration tests settings
INTEGRATION_TEST_SETTINGS = {
# Retrieved from the Tutor environment where the integration tests run
"EOX_THEMING_BASE_URL": f"http://{os.environ.get('LMS_HOST', 'local.edly.io')}/eox-tenant",
"EOX_THEMING_BASE_URL": f"http://{os.environ.get('LMS_HOST', 'local.edly.io')}/eox-theming",
"API_TIMEOUT": 5,
}

0 comments on commit a41d9cf

Please sign in to comment.