This is an automated email from the ASF dual-hosted git repository.
jli pushed a commit to branch feat-additional-dataset-playwright-tests
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to
refs/heads/feat-additional-dataset-playwright-tests by this push:
new 136d3266e3b fix(ci): explicitly set SQLALCHEMY_EXAMPLES_URI in
playwright workflow
136d3266e3b is described below
commit 136d3266e3b3b6b46f1638d9216968be3af6e114
Author: Joe Li <[email protected]>
AuthorDate: Tue Feb 3 13:33:50 2026 -0800
fix(ci): explicitly set SQLALCHEMY_EXAMPLES_URI in playwright workflow
The experimental Playwright tests were failing with "database examples
does not exist" because the examples database URI wasn't being set
correctly in CI. While the test config should handle this via
SQLALCHEMY_EXAMPLES_URI = SQLALCHEMY_DATABASE_URI, explicitly setting
SUPERSET__SQLALCHEMY_EXAMPLES_URI ensures the correct PostgreSQL
database is used regardless of config loading order.
Co-Authored-By: Claude Opus 4.5 <[email protected]>
---
.github/workflows/superset-playwright.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/superset-playwright.yml
b/.github/workflows/superset-playwright.yml
index b2e2dbf6a9b..80329e0ca6e 100644
--- a/.github/workflows/superset-playwright.yml
+++ b/.github/workflows/superset-playwright.yml
@@ -40,6 +40,7 @@ jobs:
SUPERSET_ENV: development
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
SUPERSET__SQLALCHEMY_DATABASE_URI:
postgresql+psycopg2://superset:[email protected]:15432/superset
+ SUPERSET__SQLALCHEMY_EXAMPLES_URI:
postgresql+psycopg2://superset:[email protected]:15432/superset
PYTHONPATH: ${{ github.workspace }}
REDIS_PORT: 16379
GITHUB_TOKEN: ${{ github.token }}