| ... | ... |
@@ -368,7 +368,8 @@ Right now you can see what's happening with OpenShift development at: |
| 368 | 368 |
|
| 369 | 369 |
https://github.com/openshift/origin[github.com/openshift/origin] |
| 370 | 370 |
|
| 371 |
-Ready to play with some code? Hop down and read up on our link:#_the_roadmap[roadmap] for ideas on where you can contribute. |
|
| 371 |
+Ready to play with some code? Hop down and read up on our link:#the-roadmap[roadmap] for ideas on where you can contribute. |
|
| 372 |
+You can also try to take a stab at any issue tagged with the https://github.com/openshift/origin/issues?q=is%3Aissue+is%3Aopen+label%3Ahelp-wanted[help-wanted] label. |
|
| 372 | 373 |
|
| 373 | 374 |
*If you are interested in contributing to Kubernetes directly:* + |
| 374 | 375 |
https://github.com/kubernetes/kubernetes#community-discussion-and-support[Join the Kubernetes community] and check out the https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md[contributing guide]. |
| ... | ... |
@@ -166,7 +166,7 @@ working against the API. Run it with: |
| 166 | 166 |
$ hack/test-cmd.sh |
| 167 | 167 |
|
| 168 | 168 |
This suite comprises many smaller suites, which are found under `test/cmd` and can be run individually by |
| 169 |
-specifying them using a regex filter, passed through `grep -E` like with integration tests above: |
|
| 169 |
+specifying a regex filter, passed through `grep -E` like with integration tests above: |
|
| 170 | 170 |
|
| 171 | 171 |
$ hack/test-cmd.sh <regex> |
| 172 | 172 |
|
| ... | ... |
@@ -203,9 +203,14 @@ Run the extended tests with: |
| 203 | 203 |
|
| 204 | 204 |
$ test/extended/core.sh |
| 205 | 205 |
|
| 206 |
+This suite comprises many smaller suites, which are found under `test/extended` and can be run individually by |
|
| 207 |
+specifying `--ginkgo.focus` and a regex filter: |
|
| 208 |
+ |
|
| 209 |
+ $ test/extended/core.sh --ginkgo.focus=<regex> |
|
| 210 |
+ |
|
| 206 | 211 |
Extended tests should be Go tests in the `test/extended` directory that use the Ginkgo library. They |
| 207 | 212 |
must be able to be run remotely, and cannot depend on any local interaction with the filesystem or |
| 208 |
-Docker. |
|
| 213 |
+Docker. More information about running extended tests can be found in [test/extended/README](https://github.com/openshift/origin/blob/master/test/extended/README.md). |
|
| 209 | 214 |
|
| 210 | 215 |
|
| 211 | 216 |
## Installing Godep |