From d2dc111ab39d5df25630402503d3d7e9f5844d2d Mon Sep 17 00:00:00 2001 From: omri zaher Date: Wed, 24 Sep 2025 12:33:26 +0300 Subject: [PATCH] Add artifact upload for Allure results in Selenium tests --- .github/workflows/e2e-testing.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/e2e-testing.yml b/.github/workflows/e2e-testing.yml index bd2896e86..89749fd8e 100644 --- a/.github/workflows/e2e-testing.yml +++ b/.github/workflows/e2e-testing.yml @@ -303,6 +303,14 @@ jobs: pytest --alluredir=allure-results tests/ + - name: Upload Allure results as artifact + uses: actions/upload-artifact@v4 + if: always() # Upload even if tests fail + with: + name: allure-results-${{ matrix.browser }}-${{ matrix.resolution.name }} + path: allure-results/ + retention-days: 30 + allure-report: runs-on: ubuntu-latest needs: Selenium-ui-tests