Skip to content

Updated Playwright tests #34

Updated Playwright tests

Updated Playwright tests #34

name: Integration Tests
on: [push]
jobs:
integration-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_integration_tests.txt
- name: Run integration tests
run: |
pytest tests/integration_tests/ -v