Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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) }}
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
Loading