Skip to content

Bump gunicorn from 25.2.0 to 25.3.0 #56

Bump gunicorn from 25.2.0 to 25.3.0

Bump gunicorn from 25.2.0 to 25.3.0 #56

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
env:
APP_ENV: testing
SECRET_KEY: ci-test-secret-key
DEV_LOGIN_ENABLED: "false"
run: pytest --tb=short -q