test:
    uv run pytest

# Generate API reference documentation for prefect-azure
api-ref:
    #!/usr/bin/env bash
    REPO_ROOT="$(git rev-parse --show-toplevel)"
    cd "$REPO_ROOT"
    uvx --with-editable ./src/integrations/prefect-azure \
        --python 3.12 \
        --isolated \
        mdxify \
        --all \
        --root-module prefect_azure \
        --output-dir docs/integrations/prefect-azure/api-ref \
        --anchor-name "prefect-azure-sdk-reference" \
        --repo-url https://github.com/PrefectHQ/prefect \
        --include-inheritance
