Skip to content

Commit

Permalink
Merge pull request #2515 from arkodg/exempt-experimental
Browse files Browse the repository at this point in the history
implement exemptFeatures for conformance profile
  • Loading branch information
k8s-ci-robot authored Oct 25, 2023
2 parents 22b7f77 + 91e078a commit 5ec6ba3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions conformance/utils/suite/experimental_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,18 @@ func NewExperimentalConformanceTestSuite(s ExperimentalConformanceOptions) (*Exp
}
suite.extendedUnsupportedFeatures[conformanceProfileName].Insert(f)
}
// Add Exempt Features into unsupported features list
if s.ExemptFeatures.Has(f) {
suite.extendedUnsupportedFeatures[conformanceProfileName].Insert(f)
}
}
}
}

for feature := range s.ExemptFeatures {
s.SupportedFeatures.Delete(feature)
}

if s.FS == nil {
s.FS = &conformance.Manifests
}
Expand Down

0 comments on commit 5ec6ba3

Please sign in to comment.