test:
    uv run pytest

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