@@ -76,6 +76,8 @@ def teardown_cluster():
7676 request .addfinalizer (teardown_cluster )
7777
7878
79+ @pytest .mark .skipif (pytest .config .getoption ('--symbols' ) is None ,
80+ reason = 'Symbols must be configured' )
7981def test_new_failover_cluster_two_member (BigIPSetup ):
8082 a , b , c = BigIPSetup
8183 bigip_list = [a , b ]
@@ -89,6 +91,8 @@ def test_new_failover_cluster_two_member(BigIPSetup):
8991 cm .teardown ()
9092
9193
94+ @pytest .mark .skipif (pytest .config .getoption ('--symbols' ) is None ,
95+ reason = 'Symbols must be configured' )
9296def test_new_failover_cluster_three_member (BigIPSetup ):
9397 a , b , c = BigIPSetup
9498 bigip_list = [a , b , c ]
@@ -102,6 +106,8 @@ def test_new_failover_cluster_three_member(BigIPSetup):
102106 cm .teardown ()
103107
104108
109+ @pytest .mark .skipif (pytest .config .getoption ('--symbols' ) is None ,
110+ reason = 'Symbols must be configured' )
105111def test_existing_failover_cluster (BigIPSetup ):
106112 a , b , c = BigIPSetup
107113 bigip_list = [a , b ]
@@ -118,6 +124,8 @@ def test_existing_failover_cluster(BigIPSetup):
118124 cm .teardown ()
119125
120126
127+ @pytest .mark .skipif (pytest .config .getoption ('--symbols' ) is None ,
128+ reason = 'Symbols must be configured' )
121129def test_scale_up_sync_failover (BigIPSetup , ThreeBigIPTeardownSyncFailover ):
122130 a , b , c = BigIPSetup
123131 bigip_list = [a , b ]
@@ -130,6 +138,8 @@ def test_scale_up_sync_failover(BigIPSetup, ThreeBigIPTeardownSyncFailover):
130138 cm .scale_up_by_one (c )
131139
132140
141+ @pytest .mark .skipif (pytest .config .getoption ('--symbols' ) is None ,
142+ reason = 'Symbols must be configured' )
133143def test_scale_up_down_up_down_sync_failover (
134144 BigIPSetup , TwoBigIPTeardownSyncFailover ):
135145 a , b , c = BigIPSetup
0 commit comments