mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00
68 lines
2.0 KiB
YAML
68 lines
2.0 KiB
YAML
name: Run Docker integration tests
|
|
|
|
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: Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Set permissions for log directory
|
|
run: |
|
|
mkdir -p /home/runner/.memgpt/logs
|
|
sudo chown -R $USER:$USER /home/runner/.memgpt/logs
|
|
chmod -R 755 /home/runner/.memgpt/logs
|
|
|
|
- name: Build and run docker dev server
|
|
env:
|
|
MEMGPT_PG_DB: memgpt
|
|
MEMGPT_PG_USER: memgpt
|
|
MEMGPT_PG_PASSWORD: memgpt
|
|
MEMGPT_PG_PORT: 8888
|
|
MEMGPT_SERVER_PASS: test_server_token
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
|
|
run: docker compose -f dev-compose.yaml up --build -d
|
|
#- name: "Setup Python, Poetry and Dependencies"
|
|
# uses: packetcoders/action-setup-cache-python-poetry@v1.2.0
|
|
# with:
|
|
# python-version: "3.12"
|
|
# poetry-version: "1.8.2"
|
|
# install-args: "--all-extras"
|
|
|
|
- name: Wait for service
|
|
run: bash scripts/wait_for_service.sh http://localhost:8083 -- echo "Service is ready"
|
|
|
|
- name: Run tests with pytest
|
|
env:
|
|
MEMGPT_PG_DB: memgpt
|
|
MEMGPT_PG_USER: memgpt
|
|
MEMGPT_PG_PASSWORD: memgpt
|
|
MEMGPT_PG_PORT: 8888
|
|
MEMGPT_SERVER_PASS: test_server_token
|
|
MEMGPT_SERVER_URL: http://localhost:8083
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
PYTHONPATH: ${{ github.workspace }}:${{ env.PYTHONPATH }}
|
|
run: |
|
|
pipx install poetry==1.8.2
|
|
poetry install -E dev -E postgres
|
|
poetry run pytest -s tests/test_client.py
|
|
poetry run pytest -s tests/test_concurrent_connections.py
|
|
|
|
- name: Print docker logs if tests fail
|
|
if: failure()
|
|
run: |
|
|
echo "Printing Docker Logs..."
|
|
docker compose -f dev-compose.yaml logs
|