Skip to content

Add or update the Azure App Service build and deployment workflow config #1

Add or update the Azure App Service build and deployment workflow config

Add or update the Azure App Service build and deployment workflow config #1

Workflow file for this run

name: Run All pytest Tests
env:
PGVECTOR_TEST_DB_URL: ${{ secrets.PGVECTOR_TEST_DB_URL }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and run container
run: bash db/run_postgres.sh
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: "3.11"
poetry-version: "1.7.1"
install-args: "--all-extras"
- name: Run tests with pytest
env:
PGVECTOR_TEST_DB_URL: postgresql+pg8000:https://memgpt:memgpt@localhost:8888/memgpt
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
poetry run pytest -s -vv -k "not test_storage and not test_server" tests
- name: Run storage tests
env:
PGVECTOR_TEST_DB_URL: postgresql+pg8000:https://memgpt:memgpt@localhost:8888/memgpt
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
poetry run pytest -s -vv tests/test_storage.py
- name: Run server tests
env:
PGVECTOR_TEST_DB_URL: postgresql+pg8000:https://memgpt:memgpt@localhost:8888/memgpt
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
run: |
poetry run pytest -s -vv tests/test_server.py