From ac500611066f7315786e410865ce575a1f129ae8 Mon Sep 17 00:00:00 2001 From: magajh Date: Thu, 12 Sep 2024 12:02:27 -0400 Subject: [PATCH] test --- .github/workflows/test.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 02ca9b8..a68d400 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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