website: update more pages to discourage use of alpha/master

The brach is unmaintained and deprecated.
We no longer call it the "stable" version as of commit 6634afce10b8
("minor: reword "stable_kernel/index.rst" to not call alpha/master
"stable"").

But we had some bits remaining that called it the "experimental"
version. (We really tried to have our cake and eat it too with this
branch...).

Change-Id: I0d48eb033321f3ac21de2af9ea8753b6b6c5eb9c
Signed-off-by: Daniel Latypov <dlatypov@google.com>
2 files changed
tree: 664ab3b9f864c1784ab8850b77f4b2559a41ad56
  1. development/
  2. statics/
  3. third_party/
  4. usage/
  5. .gitignore
  6. conf.py
  7. CONTRIBUTING.md
  8. deploy.sh
  9. index.rst
  10. LICENSE
  11. Makefile
  12. press.rst
  13. README.md
README.md

KUnit Documentation

KUnit is a lightweight unit testing and mocking framework for the Linux kernel. These tests are able to be run locally on a developer’s workstation without a VM or special hardware.

KUnit is heavily inspired by JUnit, Python’s unittest.mock, and Googletest/Googlemock for C++. KUnit defines a way to mock out C style classes and functions and create expectations on methods called within the code under test.

This is a repository to host the source for the KUnit documentation.

NOTE: There is an important distinction between KUnit‘s documentation source and it’s documentation site. As a project meant primarily to serve the development of the Linux kernel, a significant portion of our code and documentation reside in the Linux kernel codebase. Consequently, the documentation that does not live in the Linux kernel follows many of the conventions of the Linux kernel. One of these conventions is that we use Sphinx for all of our documentation. Thus, because Sphinx requires documentation to be compiled from its source files, we must have a repository for all the Sphinx source files and a separate repository for all of the generated output files to actually host the site. This is the repository for the source.

Where is the code?

https://kunit.googlesource.com

How to build documentation

Documentation can be built by running:

make html

How to update the documentation

Our documentation is hosted at https://github.com/google/kunit-docs. The documentation may be updated by building the documentation as described above, and then:

./deploy.sh

You can copy the files over without committing and pushing the files with:

./deploy.sh --no-commit