...
1
16
17
18
19
20 package flags
21
22 import (
23 "flag"
24 )
25
26 var (
27 GatewayClassName = flag.String("gateway-class", "gateway-conformance", "Name of GatewayClass to use for tests")
28 ShowDebug = flag.Bool("debug", false, "Whether to print debug logs")
29 CleanupBaseResources = flag.Bool("cleanup-base-resources", true, "Whether to cleanup base test resources after the run")
30 SupportedFeatures = flag.String("supported-features", "", "Supported features included in conformance tests suites")
31 SkipTests = flag.String("skip-tests", "", "Comma-separated list of tests to skip")
32 RunTest = flag.String("run-test", "", "Name of a single test to run, instead of the whole suite")
33 ExemptFeatures = flag.String("exempt-features", "", "Exempt Features excluded from conformance tests suites")
34 EnableAllSupportedFeatures = flag.Bool("all-features", false, "Whether to enable all supported features for conformance tests")
35 NamespaceLabels = flag.String("namespace-labels", "", "Comma-separated list of name=value labels to add to test namespaces")
36 NamespaceAnnotations = flag.String("namespace-annotations", "", "Comma-separated list of name=value annotations to add to test namespaces")
37 )
38
View as plain text