diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 5078e96d..6647dac3 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -13,6 +13,7 @@ on: - 'release-[0-9]+.[0-9]+.x' types: [opened, synchronize, reopened] paths: + - 'src/ogx_client/**' - 'src/llama_stack_client/**' - 'uv.lock' - 'pyproject.toml' @@ -107,7 +108,7 @@ jobs: run: | echo "Building Llama Stack" LLAMA_STACK_DIR=. \ - uv run --no-sync llama stack list-deps ci-tests | xargs -L1 uv pip install + uv run --no-sync ogx stack list-deps ci-tests | xargs -L1 uv pip install - name: Configure git for commits if: ${{ matrix.config.allowed_clients == null || contains(matrix.config.allowed_clients, matrix.client) }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6d39e1ff..9f9d1648 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,19 +17,19 @@ repos: rev: v0.9.4 hooks: - id: ruff - files: ^src/llama_stack_client/lib/.* + files: ^src/(ogx_client|llama_stack_client)/lib/.* args: [ --fix, --exit-non-zero-on-fix ] - id: ruff-format - files: ^src/llama_stack_client/lib/.* + files: ^src/(ogx_client|llama_stack_client)/lib/.* - repo: https://github.com/adamchainz/blacken-docs rev: 1.19.0 hooks: - id: blacken-docs - files: ^src/llama_stack_client/lib/.* + files: ^src/(ogx_client|llama_stack_client)/lib/.* additional_dependencies: - black==24.3.0 @@ -60,7 +60,7 @@ repos: rev: v1.5.5 hooks: - id: insert-license - files: \.py$|\.sh$ + files: ^src/(ogx_client|llama_stack_client)/lib/.*\.(py|sh)$ args: - --license-filepath - scripts/license_header.txt