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: |