Sample test data (#10487)

Co-authored-by: bogdan kyryliuk <bogdankyryliuk@dropbox.com>
This commit is contained in:
Bogdan
2020-08-03 09:08:49 -07:00
committed by GitHub
parent 821916a681
commit ab404ea2cf
8 changed files with 46 additions and 19 deletions

View File

@@ -28,13 +28,13 @@ class TestSupersetDataFrame(SupersetTestCase):
self.examples.load_css_templates()
def test_load_energy(self):
self.examples.load_energy()
self.examples.load_energy(sample=True)
def test_load_world_bank_health_n_pop(self):
self.examples.load_world_bank_health_n_pop()
self.examples.load_world_bank_health_n_pop(sample=True)
def test_load_birth_names(self):
self.examples.load_birth_names()
self.examples.load_birth_names(sample=True)
def test_load_test_users_run(self):
from superset.cli import load_test_users_run
@@ -42,4 +42,4 @@ class TestSupersetDataFrame(SupersetTestCase):
load_test_users_run()
def test_load_unicode_test_data(self):
self.examples.load_unicode_test_data()
self.examples.load_unicode_test_data(sample=True)