--- id: 77f1197d-8aa8-453e-89af-78858d6002f7 type: workflow title: "uv package management for object-handler" tags: [esb-monorepo, object-handler, python, uv, workflow] importance: 0.5 confidence: 0.8 created: "2025-12-10T19:55:32.586163+00:00" updated: "2025-12-10T19:55:32.586163+00:00" --- Object-handler uses uv for Python dependency management. Commands: (1) uv venv - create .venv, (2) uv pip install -r requirements.txt - install deps, (3) uv run pytest tests/ -v - run tests (handles venv automatically). Important: uv run is preferred over activating venv manually. Tests must use python -m pytest or uv run pytest for proper module path resolution.