Skip to content

Bump werkzeug from 2.3.7 to 3.0.1 #421

Bump werkzeug from 2.3.7 to 3.0.1

Bump werkzeug from 2.3.7 to 3.0.1 #421

Workflow file for this run

name: Python test
on: push
jobs:
build:
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:15.3
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: weave_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11.4
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest
env:
TEST_DATABASE_URL: postgresql+psycopg://postgres:postgres@localhost:5432/weave_test
DATABASE_URL: postgresql+psycopg://postgres:postgres@localhost:5432/weave_test
REACT_APP_SERVER_URL: http://localhost:5000
SECRET_KEY: test
FLASK_DEBUG: '1'