summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas.abraitis@gmail.com>2019-12-19 10:09:39 +0200
committerGitHub <noreply@github.com>2019-12-19 10:09:39 +0200
commitd8ffe9761d7b85d3760b70faaa933f62c872245e (patch)
treed5cc9918ee675d7fb8dcd5ea24d36f2ce645beae
parenta0f26714001f2af59ad7ba1e1126e323bd6f8310 (diff)
parent8bc6e6291481135c777690dd23cc0d3bc28a2ff5 (diff)
Merge pull request #5549 from donaldsharp/automated
doc: Update workflow to include new automated testing Requirement
-rw-r--r--doc/developer/workflow.rst9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/developer/workflow.rst b/doc/developer/workflow.rst
index 40378f0219..8ce3bdeeb2 100644
--- a/doc/developer/workflow.rst
+++ b/doc/developer/workflow.rst
@@ -283,7 +283,10 @@ Pre-submission Checklist
- ``make test``
- In the case of a major new feature or other significant change, document
- plans for continued maintenance of the feature
+ plans for continued maintenance of the feature. In addition it is a
+ requirement that automated testing must be written that exercises
+ the new feature within our existing CI infrastructure. Also the
+ addition of automated testing to cover any pull request is encouraged.
.. _signing-off:
@@ -452,6 +455,10 @@ Guidelines for code review
may originate with a reviewer or document agreement reached on Slack,
the Development mailing list, or the weekly technical meeting.
+- Reviewers may ask for new automated testing if they feel that the
+ code change is large enough/significant enough to warrant such
+ a requirement.
+
Coding Practices & Style
========================