Skip to content

Commit

Permalink
fix: load tabbed dash only for tests (apache#16091)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Aug 5, 2021
1 parent e6274e0 commit b72fd7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions superset/cli.py
Expand Up @@ -133,8 +133,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 load_test_data:
print("Loading [Tabbed dashboard]")
examples.load_tabbed_dashboard(only_metadata)

if not load_test_data:
print("Loading [Random time series data]")
Expand Down

0 comments on commit b72fd7b

Please sign in to comment.