This is an automated email from the ASF dual-hosted git repository.

jli pushed a commit to branch feat/dataset-playwright-tests
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 9a4b9e180d3190e556ff8b8b61d51011a683a99f
Author: Joe Li <[email protected]>
AuthorDate: Thu Nov 13 22:17:49 2025 -0800

    fix(ci): update experimental Playwright workflow to load all examples
    
    **Problem**: Experimental Playwright tests still failing after commit 
8eb510f.
    
    **Root Cause**: There are TWO Playwright workflow files:
    - `.github/workflows/superset-e2e.yml` - Updated in commit 8eb510f ✅
    - `.github/workflows/superset-playwright.yml` - NOT updated ❌
    
    The experimental tests (`playwright-tests-experimental` job) run from
    the `superset-playwright.yml` file which was still using `testdata`
    instead of `playwright_testdata`, causing `members_channels_2` dataset
    to not be loaded.
    
    **Solution**: Update `superset-playwright.yml` to use `playwright_testdata`
    
    Changed line 100 from:
      run: testdata
    To:
      run: playwright_testdata
    
    This matches the fix in commit 8eb510f and ensures experimental tests
    load all 17 example datasets including virtual datasets.
    
    **Testing**: Will be validated by CI run after push
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-Authored-By: Claude <[email protected]>
---
 .github/workflows/superset-playwright.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/superset-playwright.yml 
b/.github/workflows/superset-playwright.yml
index f9ca2c09aa..eb6935a17d 100644
--- a/.github/workflows/superset-playwright.yml
+++ b/.github/workflows/superset-playwright.yml
@@ -97,7 +97,7 @@ jobs:
         if: steps.check.outputs.python || steps.check.outputs.frontend
         uses: ./.github/actions/cached-dependencies
         with:
-          run: testdata
+          run: playwright_testdata
       - name: Setup Node.js
         if: steps.check.outputs.python || steps.check.outputs.frontend
         uses: actions/setup-node@v5

Reply via email to