From 2f217fe5b582226dd83854c61a4634b0101d2112 Mon Sep 17 00:00:00 2001 From: Nikita Karetnikov Date: Mon, 15 Apr 2024 09:33:51 +0200 Subject: [PATCH] Run playwright and integration tests together --- .github/workflows/tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ef494a7b5..888f17270 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - test-type: ["playwright", "integration", "user-journey"] + test-type: ["integration", "user-journey"] defaults: run: shell: bash -el {0} @@ -117,11 +117,11 @@ jobs: run: | playwright install pytest --video on ../tests/test_playwright.py - if: matrix.test-type == 'playwright' + if: matrix.test-type == 'integration' - name: "Upload test results 📤" uses: actions/upload-artifact@v4 - if: ${{ always() }} && matrix.test-type == 'playwright' + if: ${{ always() }} && matrix.test-type == 'integration' with: name: playwright-tests path: conda-store-server/test-results