2021-07-06 08:02:28 +00:00
|
|
|
/*
|
2023-12-05 15:45:12 +00:00
|
|
|
Copyright 2023 The Kubernetes Authors.
|
2021-07-06 08:02:28 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package e2e
|
|
|
|
|
2022-09-07 16:25:57 +00:00
|
|
|
import "github.com/onsi/ginkgo/v2"
|
2021-07-06 08:02:28 +00:00
|
|
|
|
2023-12-05 15:45:12 +00:00
|
|
|
func NFDDescribe(args ...interface{}) bool {
|
|
|
|
return ginkgo.Describe("[k8s-sigs/node-feature-discovery]", append(args, ginkgo.Label("nfd-all"))...)
|
2021-07-06 08:02:28 +00:00
|
|
|
}
|