superset/tests/load_examples_test.py
timifasubaa 91b758f3bc
Reduce data loaded before loading tests (#6298)
* reduce data loaded before loading tests

* make cypress only load needed tests
2018-11-19 15:27:25 -08:00

22 lines
534 B
Python

from superset import data
from superset.cli import load_test_users_run
from .base_tests import SupersetTestCase
class SupersetDataFrameTestCase(SupersetTestCase):
def test_load_css_templates(self):
data.load_css_templates()
def test_load_energy(self):
data.load_energy()
def test_load_world_bank_health_n_pop(self):
data.load_world_bank_health_n_pop()
def test_load_birth_names(self):
data.load_birth_names()
def test_load_test_users_run(self):
load_test_users_run()