From b9b13a367087309914ee2eb20c6d67c08183bc1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Tue, 6 May 2025 18:49:49 +0200 Subject: [PATCH 1/2] chore: factor kube auth test distro (#2105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What does this PR do? We just need to validate the auth so we don't need any API / Providers. Signed-off-by: Sébastien Han --- .github/workflows/integration-auth-tests.yml | 28 ++------------------ 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/.github/workflows/integration-auth-tests.yml b/.github/workflows/integration-auth-tests.yml index 3c155195f..19a4ae003 100644 --- a/.github/workflows/integration-auth-tests.yml +++ b/.github/workflows/integration-auth-tests.yml @@ -74,32 +74,8 @@ jobs: cat <<'EOF' > $run_dir/run.yaml version: '2' image_name: kube - apis: - - agents - - datasetio - - eval - - inference - - safety - - scoring - - telemetry - - tool_runtime - - vector_io - providers: - agents: - - provider_id: meta-reference - provider_type: inline::meta-reference - config: - persistence_store: - type: sqlite - namespace: null - db_path: ${env.SQLITE_STORE_DIR:~/.llama/distributions/ollama}/agents_store.db - telemetry: - - provider_id: meta-reference - provider_type: inline::meta-reference - config: - service_name: "${env.OTEL_SERVICE_NAME:\u200B}" - sinks: ${env.TELEMETRY_SINKS:console,sqlite} - sqlite_db_path: ${env.SQLITE_DB_PATH:~/.llama/distributions/ollama/trace_store.db} + apis: [] + providers: {} server: port: 8321 EOF From 7377a5c83e56da635b1e3b6300f154e142b691f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Tue, 6 May 2025 18:50:30 +0200 Subject: [PATCH 2/2] docs: contrib add a note about unicode in code (#2106) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What does this PR do? Don't use unicode characters in the codebase. ASCII-only is preferred for compatibility or readability reasons Signed-off-by: Sébastien Han --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 17eed43c5..c8df2d058 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -153,6 +153,8 @@ uv sync justification for bypassing the check. * When using `# type: ignore` to suppress a mypy warning, include a comment explaining the justification for bypassing the check. +* Don't use unicode characters in the codebase. ASCII-only is preferred for compatibility or + readability reasons. ## Common Tasks