Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Sep 12, 2024
1 parent e580127 commit ac50061
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ jobs:
# with:
# python-version: '3.11'

- name: Check open ports
run: |
sudo netstat -tuln # Or use ss if netstat is not available
- name: Check for web proxy services
run: |
ps aux | grep -E 'nginx|apache|caddy'
- name: Check for proxy environment variables
run: |
env | grep -i proxy
- name: Install Tutor
run: |
python3 -m pip install --upgrade pip
Expand Down Expand Up @@ -41,9 +53,9 @@ jobs:
tutor local run lms pip install eox-core eox-tenant
tutor local restart lms
- name: Wait for services to be up
run: |
sleep 600 # Adjust the sleep time as necessary for services to be fully ready
# - name: Wait for services to be up
# run: |
# sleep 600 # Adjust the sleep time as necessary for services to be fully ready

- name: Get LMS_HOST value
id: lms_host
Expand Down

0 comments on commit ac50061

Please sign in to comment.