Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Sep 12, 2024
1 parent 1442c1e commit 17acb8f
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,24 @@ jobs:
python3 -m pip install --upgrade pip
python3 -m pip install tutor
- name: Add extra LMS requirements
run: |
# Create a custom Tutor configuration to add extra pip requirements for the LMS
tutor config save --set OPENEDX_EXTRA_PIP_REQUIREMENTS="eox-core\neox-tenant"
# - name: Add extra LMS requirements
# run: |
# # Create a custom Tutor configuration to add extra pip requirements for the LMS
# tutor config save --set OPENEDX_EXTRA_PIP_REQUIREMENTS="eox-core\neox-tenant"

- name: Rebuild the LMS image to include the extra requirements
run: |
tutor images build openedx
# - name: Rebuild the LMS image to include the extra requirements
# run: |
# tutor images build openedx

- name: Start Tutor
run: |
tutor local launch -I
- name: Install additional LMS requirements
run: |
tutor local run lms pip install eox-core eox-tenant
tutor local restart lms
- name: Wait for services to be up
run: |
sleep 60 # Adjust the sleep time as necessary for services to be fully ready
Expand Down

0 comments on commit 17acb8f

Please sign in to comment.