@@ -35,6 +35,9 @@ type DSCTestCtx struct {
3535func dscManagementTestSuite (t * testing.T ) {
3636 t .Helper ()
3737
38+ // disruptive tests are only supported on tier3 clusters
39+ skipUnless (t , Tier3 )
40+
3841 // Initialize the test context.
3942 tc , err := NewTestContext (t )
4043 require .NoError (t , err , "Failed to initialize test context" )
@@ -106,8 +109,6 @@ func dscWebhookTestSuite(t *testing.T) {
106109func (tc * DSCTestCtx ) ValidateOperatorsInstallation (t * testing.T ) {
107110 t .Helper ()
108111
109- skipUnless (t , Smoke )
110-
111112 // Define operators to be installed.
112113 operators := []Operator {
113114 {nn : types.NamespacedName {Name : certManagerOpName , Namespace : certManagerOpNamespace }, skipOperatorGroup : false , globalOperatorGroup : true , channel : certManagerOpChannel },
@@ -123,8 +124,6 @@ func (tc *DSCTestCtx) ValidateOperatorsInstallation(t *testing.T) {
123124func (tc * DSCTestCtx ) ValidateResourcesCreation (t * testing.T ) {
124125 t .Helper ()
125126
126- skipUnless (t , Smoke )
127-
128127 tc .EventuallyResourceCreatedOrUpdated (
129128 WithObjectToCreate (CreateJobSetOperator ()),
130129 WithCondition (jq .Match (`.status.conditions[] | select(.type == "Available") | .status == "True"` )),
@@ -136,8 +135,6 @@ func (tc *DSCTestCtx) ValidateResourcesCreation(t *testing.T) {
136135func (tc * DSCTestCtx ) ValidateDSCICreation (t * testing.T ) {
137136 t .Helper ()
138137
139- skipUnless (t , Smoke )
140-
141138 tc .EventuallyResourceCreatedOrUpdated (
142139 WithObjectToCreate (CreateDSCI (tc .DSCInitializationNamespacedName .Name , tc .AppsNamespace , tc .MonitoringNamespace )),
143140 WithCondition (jq .Match (`.status.phase == "%s"` , status .ConditionTypeReady )),
@@ -153,8 +150,6 @@ func (tc *DSCTestCtx) ValidateDSCICreation(t *testing.T) {
153150func (tc * DSCTestCtx ) ValidateDSCCreation (t * testing.T ) {
154151 t .Helper ()
155152
156- skipUnless (t , Smoke )
157-
158153 tc .EventuallyResourceCreatedOrUpdated (
159154 WithObjectToCreate (CreateDSC (tc .DataScienceClusterNamespacedName .Name , tc .WorkbenchesNamespace )),
160155 WithCondition (jq .Match (`.status.phase == "%s"` , status .ConditionTypeReady )),
0 commit comments