Skip to content

Commit

Permalink
Apache Superset: Add version 4 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 21, 2024
1 parent fad0149 commit b55a392
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/application-apache-superset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-22.04 ]
superset-version: [ "3.*" ]
superset-version: [ "3.*", "4.*" ]
python-version: [ "3.9", "3.11" ]
cratedb-version: [ 'nightly' ]

Expand Down
5 changes: 5 additions & 0 deletions application/apache-superset/superset_config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Disable telemetry using Scarf.
# https://about.scarf.sh/
# https://github.com/apache/superset/issues/25639
ENABLE_TELEMETRY = False

# Superset specific config
ROW_LIMIT = 5000

Expand Down
2 changes: 1 addition & 1 deletion application/apache-superset/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_ui():
Log in to Superset UI, navigate to SQL Lab, and exercise a query.
"""
uri_home = "http://127.0.0.1:8088/"
uri_sqllab = "http://127.0.0.1:8088/superset/sqllab"
uri_sqllab = "http://127.0.0.1:8088/sqllab"

with sync_playwright() as p:
browser = p.firefox.launch(
Expand Down

0 comments on commit b55a392

Please sign in to comment.