File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -504,9 +504,19 @@ def test_set_tenant_home_dashboard_info(self):
504
504
self .assertEqual (self .client .set_tenant_home_dashboard_info (
505
505
HomeDashboardInfo (self .test_dashboard .id , hide_dashboard_toolbar = False )), None )
506
506
507
+ @unittest .skip ('unstable' )
507
508
def test_export_group_dashboards (self ):
508
509
entity_group = self .client .get_entity_groups_by_type ('DASHBOARD' )[0 ]
509
- self .assertIsInstance (self .client .export_group_dashboards (entity_group .id , 1 ), list )
510
+ dashboards = None
511
+ for _ in range (3 ):
512
+ try :
513
+ dashboards = self .client .export_group_dashboards (entity_group .id , 1 )
514
+ except Exception :
515
+ sleep (60 )
516
+ else :
517
+ break
518
+
519
+ self .assertIsInstance (dashboards , list )
510
520
511
521
def test_get_dashboards_by_entity_group_id (self ):
512
522
entity_group = self .client .get_entity_groups_by_type ('DASHBOARD' )[0 ]
You can’t perform that action at this time.
0 commit comments