feat(bubble): migrate saved bubble charts to bubble_v2 and drop the legacy plugin (#41728)

Co-authored-by: Claude Code <noreply@anthropic.com>
This commit is contained in:
Evan Rusackas
2026-07-03 00:36:38 -07:00
committed by rusackas
parent 8948b5af94
commit 2cd9873540
18 changed files with 63 additions and 752 deletions

View File

@@ -123,7 +123,7 @@ class TestCore(SupersetTestCase):
@pytest.mark.usefixtures("load_world_bank_dashboard_with_slices")
def test_viz_cache_key(self):
self.login(ADMIN_USERNAME)
slc = self.get_slice("Life Expectancy VS Rural %")
slc = self.get_slice("% Rural")
viz = slc.viz
qobj = viz.query_obj()
@@ -486,7 +486,7 @@ class TestCore(SupersetTestCase):
)
self.login(ADMIN_USERNAME)
slc = self.get_slice("Life Expectancy VS Rural %")
slc = self.get_slice("% Rural")
rv = self.client.post(
f"/explore_json/{slc.datasource_type}/{slc.datasource_id}/",
data={"form_data": json.dumps(slc.form_data)},
@@ -513,7 +513,7 @@ class TestCore(SupersetTestCase):
mock_get_df.side_effect = RuntimeError("boom")
self.login(ADMIN_USERNAME)
slc = self.get_slice("Life Expectancy VS Rural %")
slc = self.get_slice("% Rural")
rv = self.client.post(
f"/explore_json/{slc.datasource_type}/{slc.datasource_id}/",
data={"form_data": json.dumps(slc.form_data)},