commit | 6446fc2d0cc68f5aae00e8a5cf70d96c4f81a48f | [log] [tgz] |
---|---|---|
author | Daniel Latypov <dlatypov@google.com> | Mon Apr 05 15:44:09 2021 -0700 |
committer | Daniel Latypov <dlatypov@google.com> | Tue Apr 06 15:39:56 2021 -0700 |
tree | fb527a5ced26c3bd52060384c0d0baa06a19e616 | |
parent | 6634afce10b82c7232292b78a1da86cea92bddf9 [diff] |
minor: move deployment instructions into a ./deploy.sh Note: this also changes the remote to use SSH, since its seems all (3) users aren't using https anyways. The script is mainly copy-paste except that it handles * when there's a pre-existing checkout of the tree * running from a subdir of the kunit-website tree * an option to not commit and push * this helps if you want to check the files manually or have some unique setup wrt push credentials Change-Id: I4224850c5da70fbd01d7ae4104044b6695df33f2 Signed-off-by: Daniel Latypov <dlatypov@google.com>
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.
https://kunit.googlesource.com
Documentation can be built by running:
make html
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