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