From e51ea1c0d923aee2e39f3cf0348b8dd3c3a98c05 Mon Sep 17 00:00:00 2001 From: Vikrant Puppala Date: Fri, 22 May 2026 10:09:27 +0000 Subject: [PATCH 1/2] test: smoke-test proxy IT dispatch workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trivial docstring addition touching `src/` to exercise the .github/workflows/trigger-integration-tests.yml dispatch path end-to-end: - On PR open: skip-integration-tests-pr should post a synthetic `success` Python Proxy Tests check. - Add `integration-test` label: trigger-tests-pr should dispatch to databricks/databricks-driver-test. - Push a new commit: remove-label-on-new-commit should clear the label and post the security-reset comment. Not for merge — close after smoke test confirms the workflow behaves end-to-end. Co-authored-by: Isaac Signed-off-by: Vikrant Puppala --- src/databricks/sql/backend/kernel/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/databricks/sql/backend/kernel/__init__.py b/src/databricks/sql/backend/kernel/__init__.py index 230af47f2..64e1a9bbf 100644 --- a/src/databricks/sql/backend/kernel/__init__.py +++ b/src/databricks/sql/backend/kernel/__init__.py @@ -22,4 +22,9 @@ See ``docs/designs/pysql-kernel-integration.md`` in ``databricks-sql-kernel`` for the full integration design. + +Cross-repo integration tests for this backend run via the proxy-based +harness in ``databricks/databricks-driver-test`` (suite name +``Python Proxy Tests``). They're previewable on a PR with the +``integration-test`` label and gate the merge queue. """ From 9ed6916a8efd90b8ad9801f79853ab21aa16c417 Mon Sep 17 00:00:00 2001 From: Vikrant Puppala Date: Fri, 22 May 2026 10:15:33 +0000 Subject: [PATCH 2/2] test: empty commit to trigger label removal Signed-off-by: Vikrant Puppala