Merge pull request #8 from ThinkR-open/fix-app-on-connect #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |