-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCONTRIBUTING
More file actions
24 lines (17 loc) · 884 Bytes
/
CONTRIBUTING
File metadata and controls
24 lines (17 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
General Process
===============
For contributions, please refer to the linux kernel development process[1] and
send patches via GitHub PullRequests or mails to sj@kernel.org. The
contributions should have proper 'Signed-off-by:' tags[2]. The tag will be
considered the same as that of the linux kernel development process.
[1] https://docs.kernel.org/process/index.html
[2] https://docs.kernel.org/process/submitting-patches.html#sign-your-work-the-developer-s-certificate-of-origin
Running tests and coverage
==========================
To run tests, execute the following command:
$ ./tests/run.sh
To run tests with coverage gathering, you will need to install the `coverage` Python package:
$ pip3 install coverage
Once installed, you can get coverage report by executing the following command:
$ ./tests/run.sh coverage
CI prints the coverage report to stdout