From e0b35e6ed369c067824b8f4270764bc074865ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alperen=20K=C3=B6m=C3=BCrc=C3=BC?= Date: Fri, 4 Sep 2026 11:18:45 +0200 Subject: [PATCH 1/2] fix(metricref): add string represantation --- packages/gen/gen_ai_hub/evaluations/models/metric_config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/gen/gen_ai_hub/evaluations/models/metric_config.py b/packages/gen/gen_ai_hub/evaluations/models/metric_config.py index ac5ca891..3fe12282 100644 --- a/packages/gen/gen_ai_hub/evaluations/models/metric_config.py +++ b/packages/gen/gen_ai_hub/evaluations/models/metric_config.py @@ -20,6 +20,9 @@ def __init__( self.version = version self.id = id + def __str__(self): + return f"MetricRef Date: Fri, 4 Sep 2026 11:19:40 +0200 Subject: [PATCH 2/2] chore(ci): temp enable integration-tests-gen on PR --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f13b863..fd24e4f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -138,7 +138,8 @@ jobs: name: 'integration tests (gen)' runs-on: ubuntu-latest if: | - github.event_name != 'pull_request' + github.event_name != 'pull_request' || + github.event.pull_request.head.repo.full_name == github.repository steps: - uses: SAP/ai-sdk-python/.github/actions/setup@main