Wiki
qmesh / Code development conventions
Version Control
The QMesh source code is developed under version control, using the Git version control system.
Branch, CI and CD policies
Developers should make their changes in a separate fork and create a pull request when ready. Any changes must go through peer review before being accepted into the master branch.
Source Code Formatting Standards
Tabs and Windows-style line termination characters are not allowed.
Testing
Developers should ensure that any changes to the code do not break the functionality of QMesh and that all tests pass. The test suite can be run using
make test
from the qmesh root directory.
Back to wiki home
Back to table of contents
Updated