Skip to content

Commit ef5511c

Browse files
committedJan 14, 2016
Getting stuff to load
1 parent a38a8d4 commit ef5511c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎panoramix/data/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def load_world_bank_health_n_pop():
7171
tbl.database = get_or_create_db(db.session)
7272
db.session.merge(tbl)
7373
db.session.commit()
74-
#tbl.fetch_metadata()
74+
tbl.fetch_metadata()
7575

7676
defaults = {
7777
"compare_lag": "10",

‎tests/core_tests.py

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def test_load_examples(self):
2828
def test_slices(self):
2929
Slc = models.Slice
3030
for slc in db.session.query(Slc).all():
31+
print(slc)
3132
self.client.get(slc.slice_url)
3233
viz = slc.viz
3334
self.client.get(viz.get_url())

0 commit comments

Comments
 (0)