Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
76 changes: 0 additions & 76 deletions .claude/projects/js-to-ts/PROJECT.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/superset-app-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test-load-examples:
runs-on: ubuntu-24.04
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-applitool-cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
SUPERSET_ENV: development
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
REDIS_PORT: 16379
GITHUB_TOKEN: ${{ github.token }}
APPLITOOLS_APP_NAME: Superset
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
SUPERSET_ENV: development
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
REDIS_PORT: 16379
GITHUB_TOKEN: ${{ github.token }}
# Only use dashboard when explicitly requested via workflow_dispatch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/superset-python-integrationtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test-mysql:
runs-on: ubuntu-24.04
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
matrix:
python-version: ["current", "previous", "next"]
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
test-sqlite:
runs-on: ubuntu-24.04
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/superset-python-presto-hive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
test-postgres-presto:
runs-on: ubuntu-24.04
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
test-postgres-hive:
runs-on: ubuntu-24.04
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
SUPERSET_CONFIG: tests.integration_tests.superset_test_config
REDIS_PORT: 16379
SUPERSET__SQLALCHEMY_DATABASE_URI: postgresql+psycopg2://superset:superset@127.0.0.1:15432/superset
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-python-unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
python-version: ["previous", "current", "next"]
env:
PYTHONPATH: ${{ github.workspace }}
PYTHONPATH: ${{ github.workspace }}:${{ github.workspace }}/docker/pythonpath_dev
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v6
Expand Down
Loading