mirror of
https://github.com/apache/superset.git
synced 2026-04-21 09:04:38 +00:00
build: Skip loading example data from configs in CI (#12610)
* Skip loading example data from configs in CI * Use .test suffix for example data required by e2e tests * Address linting error with regex
This commit is contained in:
@@ -130,6 +130,9 @@ def load_examples_run(
|
||||
print("Loading [Birth names]")
|
||||
examples.load_birth_names(only_metadata, force)
|
||||
|
||||
print("Loading [Tabbed dashboard]")
|
||||
examples.load_tabbed_dashboard(only_metadata)
|
||||
|
||||
if not load_test_data:
|
||||
print("Loading [Random time series data]")
|
||||
examples.load_random_time_series_data(only_metadata, force)
|
||||
@@ -164,11 +167,8 @@ def load_examples_run(
|
||||
print("Loading DECK.gl demo")
|
||||
examples.load_deck_dash()
|
||||
|
||||
print("Loading [Tabbed dashboard]")
|
||||
examples.load_tabbed_dashboard(only_metadata)
|
||||
|
||||
# load examples that are stored as YAML config files
|
||||
examples.load_from_configs(force)
|
||||
examples.load_from_configs(force, load_test_data)
|
||||
|
||||
|
||||
@with_appcontext
|
||||
|
||||
Reference in New Issue
Block a user