Documentation
¶
Index ¶
- type EnvFlags
- func (f *EnvFlags) Assessment() string
- func (f *EnvFlags) DryRun() bool
- func (f *EnvFlags) FailFast() bool
- func (f *EnvFlags) Feature() string
- func (f *EnvFlags) Kubeconfig() string
- func (f *EnvFlags) Labels() LabelsMap
- func (f *EnvFlags) Namespace() string
- func (f *EnvFlags) Parallel() bool
- func (f *EnvFlags) SkipAssessment() string
- func (f *EnvFlags) SkipFeatures() string
- func (f *EnvFlags) SkipLabels() LabelsMap
- type LabelsMap
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvFlags ¶ added in v0.0.4
type EnvFlags struct {
// contains filtered or unexported fields
}
EnvFlags surfaces all resolved flag values for the testing framework
func ParseArgs ¶ added in v0.0.4
ParseArgs parses the specified args from global flag.CommandLine and returns a set of environment flag values.
func (*EnvFlags) Assessment ¶ added in v0.0.4
Assessment returns value for `-assess` flag
func (*EnvFlags) FailFast ¶ added in v0.0.7
FailFast is used to indicate if the failure of an assessment should continue assessing the rest of the features or skip it and continue to the next one. This is set to false by default.
func (*EnvFlags) Kubeconfig ¶ added in v0.0.4
Kubeconfig returns an optional path for kubeconfig file
func (*EnvFlags) Labels ¶ added in v0.0.4
Labels returns a map of parsed key/value from `-labels` flag
func (*EnvFlags) Parallel ¶ added in v0.0.6
Parallel is used to indicate if the test features should be run in parallel under a go-routine
func (*EnvFlags) SkipAssessment ¶ added in v0.0.4
SkipAssessment is used to track the RegExp pattern that can be used to skip certain assessments of the current feature being executed
func (*EnvFlags) SkipFeatures ¶ added in v0.0.4
SkipFeatures is used to get a RegExp pattern that can be used to skip test features from getting executed
func (*EnvFlags) SkipLabels ¶ added in v0.0.4
SkipLabels is used to define a series of labels that can be used to skip test cases during execution