feat(csharp): add E2E tests CI workflow#34
Merged
msrathore-db merged 12 commits intomainfrom Nov 17, 2025
Merged
Conversation
Add GitHub Actions workflow for E2E testing with Databricks: - New workflow file for running E2E tests on push/PR - Uses direct token authentication (no OIDC) - Only runs on PRs from the repo itself (not forks) - Test script filters for E2E tests 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
b87b616 to
9aa3884
Compare
…Actions Fixed authentication failures in GitHub Actions by explicitly passing DATABRICKS_TEST_CONFIG_FILE to the test step. Also expanded test filter to include all E2E test suites that require Databricks credentials. Changes: - Add explicit env block in test step to ensure DATABRICKS_TEST_CONFIG_FILE is passed - Expand test filter to include StatementTests, ClientTests, DriverTests, and value tests 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
…onfig The test framework expects JSON property names (token, auth_type, catalog) which it converts to ADBC parameters internally. The workflow was using ADBC parameter names directly (adbc.spark.access_token), causing authentication failures. Updated to match the working local test config format.
…the peco workspace
jadewang-db
approved these changes
Nov 17, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
.github/workflows/e2e-tests.yml- CI workflow configurationci/scripts/csharp_test_databricks_e2e.sh- E2E test execution scriptTest Plan
Required Secrets
The workflow requires the following secrets to be configured in the GitHub repository:
DATABRICKS_HOSTTEST_PECO_WAREHOUSE_HTTP_PATHDATABRICKS_TOKEN🤖 Generated with Claude Code