Example #1
0
 def disabled_clone_scenarios(self):
     FootprintInit().run_footprint_init(skip=True,
                                        test_clone_scenarios=True)
Example #2
0
 def test_delete_clones(self):
     FootprintInit().run_footprint_init(skip=True, delete_clones=True)
Example #3
0
 def disabled_layer_from_selection(self):
     FootprintInit().run_footprint_init(skip=True,
                                        test_layer_from_selection=True)
Example #4
0
 def test_all_publishers_nobuilt_form(self):
     FootprintInit().run_footprint_init(skip=False, form=True)
Example #5
0
 def test_all_publishers_nouser(self):
     FootprintInit().run_footprint_init(skip=False, nouser=True)
Example #6
0
 def test_all_publishers_nodb_entity(self):
     FootprintInit().run_footprint_init(skip=False, nodb_entity=True)
Example #7
0
 def test_all_publishers_notilestache(self):
     FootprintInit().run_footprint_init(skip=False, notilestache=True)
Example #8
0
 def test_all_publishers(self):
     FootprintInit().run_footprint_init(skip=False)
Example #9
0
 def test_recalculate_bounds(self):
     FootprintInit().run_footprint_init(skip=True, recalculate_bounds=True)
Example #10
0
 def test_wrong_celery_setting(self):
     with Replacer() as r:
         r.replace('django.conf.settings.CELERY_ALWAYS_EAGER', False)
         with self.assertRaises(Exception):
             FootprintInit().run_footprint_init(skip=True)
Example #11
0
 def test_empty_init(self):
     FootprintInit().run_footprint_init(skip=True)
Example #12
0
def setUp(self):
    # Suppress annoying SQL logging that is turned on by testing
    logging.disable(logging.INFO)
    logging.getLogger('south').setLevel(logging.CRITICAL)
    FootprintInit().run_footprint_init()