From 78f9687fb4036412c7e99350dd2154c7959fedbc Mon Sep 17 00:00:00 2001 From: magajh Date: Fri, 13 Sep 2024 05:12:40 -0400 Subject: [PATCH] test --- .github/workflows/test.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa40c0a..5fe8271 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,17 +17,16 @@ jobs: - name: Configure Tutor plugin run: | - tutor plugins create patches < $(tutor config printroot)/env/apps/caddy/Caddyfile - openedx-cms-production-settings: | - ALLOWED_HOSTS = ["*"] + echo 'Patching CMS production settings...' + echo "ALLOWED_HOSTS = ['*']" > $(tutor config printroot)/env/apps/openedx/settings/cms/production.py - openedx-lms-production-settings: | - ALLOWED_HOSTS = ["*"] - EOF - tutor plugins enable patches + echo 'Patching LMS production settings...' + echo "ALLOWED_HOSTS = ['*']" > $(tutor config printroot)/env/apps/openedx/settings/lms/production.py - name: Launch Tutor run: |