Skip to content

Commit ac069d1

Browse files
committed
Update --test-repo flag description
1 parent 221d2a7 commit ac069d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DEVELOPMENT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Flags:
5151
-p, --parallel int number of parallel threads in test framework (automatically sets the --nodes Ginkgo flag). (default 1)
5252
--skip string skip specific tests. allows regular expressions.
5353
--startup-timeout duration max time to wait for the conformance test pod to start up. (default 5m0s)
54-
--test-repo string skip specific tests. allows regular expressions.
54+
--test-repo string registry for pulling Kubernetes test images.
5555
--test-repo-list string yaml file to override registries for test images.
5656
-v, --verbosity int verbosity of test framework (values >= 6 automatically sets the -v Ginkgo flag). (default 4)
5757
```

pkg/types/flags.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (c *Configuration) AddFlags(fs *pflag.FlagSet) {
3838
fs.StringVarP(&c.Namespace, "namespace", "n", c.Namespace, "the namespace where the conformance pod is created.")
3939
fs.BoolVar(&c.DryRun, "dry-run", c.DryRun, "run in dry run mode.")
4040
fs.StringVar(&c.TestRepoList, "test-repo-list", c.TestRepoList, "yaml file to override registries for test images.")
41-
fs.StringVar(&c.TestRepo, "test-repo", c.TestRepo, "skip specific tests. allows regular expressions.")
41+
fs.StringVar(&c.TestRepo, "test-repo", c.TestRepo, "registry for pulling Kubernetes test images.")
4242
fs.DurationVar(&c.StartupTimeout, "startup-timeout", c.StartupTimeout, "max time to wait for the conformance test pod to start up.")
4343
fs.StringSliceVar(&c.ExtraArgs, "extra-args", c.ExtraArgs, "Additional parameters to be provided to the conformance container. These parameters should be specified as key-value pairs, separated by commas. Each parameter should start with -- (e.g., --clean-start=true,--allowed-not-ready-nodes=2)")
4444
fs.StringSliceVar(&c.ExtraGinkgoArgs, "extra-ginkgo-args", c.ExtraGinkgoArgs, "Additional parameters to be provided to Ginkgo runner. This flag has the same format as --extra-args.")

0 commit comments

Comments
 (0)