Documentation
¶
Index ¶
Constants ¶
View Source
const (
DefaultTimeout = "30m"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
Recursive bool `yaml:"recursive"`
Timeout string `yaml:"timeout"`
Namespace NamespaceConfig `yaml:"namespace"`
Operator OperatorConfig `yaml:"operator"`
Runtime RuntimeConfig `yaml:"runtime"`
}
type CucumberConfig ¶ added in v0.0.25
type DependencyConfig ¶ added in v0.0.42
type LoggerConfig ¶ added in v0.1.0
type NamespaceConfig ¶
type OperatorConfig ¶ added in v0.1.0
type PolicyConfig ¶ added in v0.0.42
type RepositoryConfig ¶ added in v0.0.42
type RepositoryConfig struct {
Id string `yaml:"id"`
Name string `yaml:"name,omitempty"`
Url string `yaml:"url"`
Layout string `yaml:"layout,omitempty"`
Releases PolicyConfig `yaml:"releases,omitempty"`
Snapshots PolicyConfig `yaml:"snapshots,omitempty"`
}
type RunConfig ¶ added in v0.0.24
type RunConfig struct {
BaseDir string `yaml:"baseDir"`
Config Config `yaml:"config"`
Pre []StepConfig `yaml:"pre"`
Post []StepConfig `yaml:"post"`
}
func LoadConfig ¶
func NewWithDefaults ¶ added in v0.0.26
func NewWithDefaults() *RunConfig
type RuntimeConfig ¶ added in v0.0.25
type RuntimeConfig struct {
Cucumber CucumberConfig `yaml:"cucumber"`
Selenium SeleniumConfig `yaml:"selenium"`
TestContainers TestContainersConfig `yaml:"testcontainers"`
Resources []string `yaml:"resources"`
Settings SettingsConfig `yaml:"settings"`
Env []EnvConfig `yaml:"env"`
Secret string `yaml:"secret"`
}
type SeleniumConfig ¶ added in v0.3.0
type SeleniumConfig struct {
Image string `yaml:"image"`
}
type SettingsConfig ¶ added in v0.0.42
type SettingsConfig struct {
Repositories []RepositoryConfig `yaml:"repositories"`
Dependencies []DependencyConfig `yaml:"dependencies"`
Loggers []LoggerConfig `yaml:"loggers"`
}
type StepConfig ¶ added in v0.0.26
type TestContainersConfig ¶ added in v0.6.0
type TestContainersConfig struct {
Enabled bool `yaml:"enabled"`
}
Click to show internal directories.
Click to hide internal directories.