Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ jobs:
run: uv sync --extra dev

- name: Run tests
run: uv run pytest tests/test_models.py -v
run: uv run pytest -v -m "not integration"
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
API_PORT: ${API_PORT:-8000}
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
POLICYENGINE_API_URL: http://localhost:${API_PORT:-8000}
AGENT_USE_MODAL: "false"
AGENT_USE_MODAL: ${AGENT_USE_MODAL:-false}
volumes:
- ./src:/app/src
- ./docs/out:/app/docs/out
Expand Down
Loading