Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Sep 13, 2024
1 parent 2264348 commit 4b42df6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,33 @@ jobs:
tutor config save
tutor local launch -I
- name: Install eox-core and eox-tenant in LMS
run: |
# Install eox-core and eox-tenant in the LMS container
tutor local run lms pip install eox-core
tutor local run lms pip install eox-tenant
shell: bash

- name: Check Open edX LMS heartbeat
run: |
until curl -sSf http://local.edly.io/heartbeat; do
echo "Waiting for LMS to be ready..."
sleep 5
done
echo "LMS is up and running!"
- name: Check Open edX eox-core eox-info
run: |
until curl -sSf http://local.edly.io/eox-core/eox-info; do
echo "Waiting for LMS to be ready..."
sleep 5
done
echo "LMS is up and running!"
- name: Check eox-tenant eox-info
run: |
until curl -sSf http://local.edly.io/eox-tenant/eox-info; do
echo "Waiting for LMS to be ready..."
sleep 5
done
echo "LMS is up and running!"

0 comments on commit 4b42df6

Please sign in to comment.