Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BuildTesterOptions ¶
BuildTesterOptions is the options structt that should be passed to testBuilder::BuildTester
type GinkgoTester ¶
type GinkgoTester struct { // Required Kubeconfig string Provider string KubeRoot string GinkgoParallel int // Other options defined in hack/ginkgo.sh KubeMasterURL string FlakeAttempts int GCEProject string GCEZone string GCERegion string GCEMultizone bool GKECluster string KubeMaster string ClusterID string CloudConfig string NodeInstanceGroup string KubeGCEInstancePrefix string Network string NodeTag string MasterTag string ClusterMonitoringMode string KubeContainerRuntime string MasterOSDistribution string NodeOSDistribution string NumNodes int ReportDir string ReportPrefix string // Other ginkgo options FocusRegex string SkipRegex string Seed int SystemdServices []string }
GinkgoTester runs e2e tests directly (by calling ginkgo)
func NewGinkgoTester ¶
func NewGinkgoTester(o *BuildTesterOptions) *GinkgoTester
NewGinkgoTester returns a new instance of GinkgoTester
type TestBuilder ¶
type TestBuilder interface { // BuildTester builds the appropriate Tester object for running tests BuildTester(options *BuildTesterOptions) (Tester, error) }
TestBuilder is implemented by deployers that want to customize how the e2e tests are run
Click to show internal directories.
Click to hide internal directories.