summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli2021-12-09 17:13:51 +0100
committerDenis 'GNUtoo' Carikli2021-12-09 17:16:34 +0100
commitb71bafd2cfaec838844447676f9fae30abe432ef (patch)
tree4b7edf54de2bbb047daa7bb2d808ecca69f90c05 /CONTRIBUTING.md
parent22199df4d0f7abb83cfede9949a1ae54521c8349 (diff)
CONTRIBUTING.md: Update information about tests
Contributors are now supposed to run tests in the GitLab instance, so this also needs to be reflected in the CONTRIBUTING.md as otherwise people not used to forge workflows could completely miss that information. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 34dfe23..a252462 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -4,8 +4,14 @@ The main repository for mat2 is on [0xacab]( https://0xacab.org/jvoisin/mat2 ),
4but you can send patches to jvoisin by [email](https://dustri.org/) if you prefer. 4but you can send patches to jvoisin by [email](https://dustri.org/) if you prefer.
5 5
6Do feel free to pick up [an issue]( https://0xacab.org/jvoisin/mat2/issues ) 6Do feel free to pick up [an issue]( https://0xacab.org/jvoisin/mat2/issues )
7and to send a pull-request. Please do check that everything is fine by running the 7and to send a pull-request.
8testsuite with `python3 -m unittest discover -v` before submitting one :) 8
9Before sending the pull-request, please do check that everything is fine by
10running the full test suite in GitLab. To do that, after forking mat2 in GitLab,
11you need to go in Settings -> CI/CD -> Runner and there enable shared runners.
12
13Mat2 also has unit tests (that are also run in the full test suite). You can run
14them with `python3 -m unittest discover -v`.
9 15
10If you're fixing a bug or adding a new feature, please add tests accordingly, 16If you're fixing a bug or adding a new feature, please add tests accordingly,
11this will greatly improve the odds of your merge-request getting merged. 17this will greatly improve the odds of your merge-request getting merged.