Run the full test suite from the repository root:
mise run testRun a single package suite from the repository root:
mise run test:core
mise run test:apiRun package-local tests from inside a package directory:
cd packages/core && uv run pytest
cd apps/api && uv run pytestThe repository uses a uv workspace with editable installs, so run mise run uv:sync
from the repository root before running tests from a package directory.