Skip to content

cleanup: remove debug logging, add memory-search timeout #405

cleanup: remove debug logging, add memory-search timeout

cleanup: remove debug logging, add memory-search timeout #405

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Check lock file is current
run: uv lock --check
- name: Install dependencies
run: uv sync --extra dev --extra langchain
- name: Run tests
run: uv run pytest --tb=short -q -m "not slow and not e2e"
env:
# Dummy key so config detects a provider; mock_providers fixture
# intercepts before any real API call is made
OPENAI_API_KEY: sk-test-ci-dummy-key