Merge pull request #22624 from fejta/testing

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2016-03-11 02:57:10 -08:00
4 changed files with 248 additions and 72 deletions

View File

@@ -64,6 +64,7 @@ Testing conventions
- Significant features should come with integration (test/integration) and/or [end-to-end (test/e2e) tests](e2e-tests.md)
- Including new kubectl commands and major features of existing commands
- Unit tests must pass on OS X and Windows platforms - if you use Linux specific features, your test case must either be skipped on windows or compiled out (skipped is better when running Linux specific commands, compiled out is required when your code does not compile on Windows).
- See the [testing guide](testing.md) for additional testing advice.
Directory and file conventions
- Avoid package sprawl. Find an appropriate subdirectory for new packages. (See [#4851](http://issues.k8s.io/4851) for discussion.)