|
...
|
...
|
@@ -237,6 +237,11 @@ and can be run individually by specifying `--ginkgo.focus` and a regex filter:
|
|
237
|
237
|
|
|
238
|
238
|
$ test/extended/core.sh --ginkgo.focus=<regex>
|
|
239
|
239
|
|
|
|
240
|
+In addition, the extended tests can be ran against an existing OpenShift
|
|
|
241
|
+cluster:
|
|
|
242
|
+
|
|
|
243
|
+ $ KUBECONFIG=/path/to/admin.kubeconfig TEST_ONLY=true test/extended/core.sh --ginkgo.focus=<regex>
|
|
|
244
|
+
|
|
240
|
245
|
Extended tests should be Go tests in the `test/extended` directory that use
|
|
241
|
246
|
the Ginkgo library. They must be able to be run remotely, and cannot depend on
|
|
242
|
247
|
any local interaction with the filesystem or Docker.
|
|
...
|
...
|
@@ -244,7 +249,6 @@ any local interaction with the filesystem or Docker.
|
|
244
|
244
|
More information about running extended tests can be found in
|
|
245
|
245
|
[test/extended/README](https://github.com/openshift/origin/blob/master/test/extended/README.md).
|
|
246
|
246
|
|
|
247
|
|
-
|
|
248
|
247
|
## Installing Godep
|
|
249
|
248
|
|
|
250
|
249
|
OpenShift and Kubernetes use [Godep](https://github.com/tools/godep) for
|