-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2e8046
commit 6c5e837
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
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/.letta/logs | ||
sudo chown -R $USER:$USER /home/runner/.letta/logs | ||
chmod -R 755 /home/runner/.letta/logs | ||
- name: Build and run docker dev server | ||
env: | ||
LETTA_PG_DB: letta | ||
LETTA_PG_USER: letta | ||
LETTA_PG_PASSWORD: letta | ||
LETTA_PG_PORT: 8888 | ||
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/[email protected] | ||
# 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:8283 -- echo "Service is ready" | ||
|
||
- name: Run tests with pytest | ||
env: | ||
LETTA_PG_DB: letta | ||
LETTA_PG_USER: letta | ||
LETTA_PG_PASSWORD: letta | ||
LETTA_PG_PORT: 8888 | ||
LETTA_SERVER_PASS: test_server_token | ||
LETTA_SERVER_URL: http://localhost:8283 | ||
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 -E external-tools | ||
poetry run python examples/docs/agent_advanced.py | ||
poetry run python examples/docs/agent_basic.py | ||
poetry run python examples/docs/memory.py | ||
poetry run python examples/docs/rest_client.py | ||
poetry run python examples/docs/tool.py | ||
- name: Print docker logs if tests fail | ||
if: failure() | ||
run: | | ||
echo "Printing Docker Logs..." | ||
docker compose -f dev-compose.yaml logs |