From e551f34d92a4e269b83e09cd09383e3da52f5093 Mon Sep 17 00:00:00 2001 From: omri zaher Date: Wed, 24 Sep 2025 16:26:47 +0300 Subject: [PATCH] Remove debug test discovery and listing of Allure results from CI workflow --- .github/workflows/e2e-testing.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/e2e-testing.yml b/.github/workflows/e2e-testing.yml index ef750c627..10e7c72c0 100644 --- a/.github/workflows/e2e-testing.yml +++ b/.github/workflows/e2e-testing.yml @@ -276,10 +276,6 @@ jobs: # Final verification curl -I "$WEKAN_URL" || exit 1 - - name: Debug test discovery - run: | - pytest --collect-only tests/ - - name: Run Selenium tests env: HEADLESS: true @@ -305,12 +301,6 @@ jobs: EOF pytest --alluredir=allure-results tests/ - - name: List Allure Results - run: | - echo "Allure results for $ALLURE_SUITE" - ls -lh allure-results - cat allure-results/environment.properties || true - - name: Upload Allure results as artifact uses: actions/upload-artifact@v4 if: always() # Upload even if tests fail