Skip to content

Bump pytest from 8.3.3 to 8.3.4 #47

Bump pytest from 8.3.3 to 8.3.4

Bump pytest from 8.3.3 to 8.3.4 #47

Workflow file for this run

---
name: Run automatic tests
on:
pull_request:
branches:
- main
push:
branches: [main]
jobs:
run_automatic_tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python -
- name: Install dependencies
working-directory: .
run: poetry install
- name: Make sure browsers are installed for Playwright
run: poetry run playwright install --with-deps
- name: Run tests
run: TEST_MODE=yes poetry run pytest app.py --base-url http://localhost:5002
continue-on-error: false