Skip to content

Merge pull request #8 from ThinkR-open/fix-app-on-connect #18

Merge pull request #8 from ThinkR-open/fix-app-on-connect

Merge pull request #8 from ThinkR-open/fix-app-on-connect #18

Workflow file for this run

name: Unit tests + E2E tests
on:
push:
branches: ["*"]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: 🐙 Git Checkout
uses: actions/checkout@v3
- name: 🐍 Prepare Python environment
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: 🐍 Install Poetry
run: pip install poetry
- name: 🐍 Install dependencies
run: poetry install --no-interaction
- name: 🕸️ Ensure browsers are installed
run: poetry run playwright install
- name: 🧪 Run tests
run: poetry run pytest --github-report -vvv