Skip to content

Commit

Permalink
Run playwright and integration tests together
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaretnikov committed Apr 15, 2024
1 parent bcde204 commit 2f217fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2f217fe

Please sign in to comment.