Development Standards

We use the following development standards:

Cyclomatic Complexity

Coding Style

  • Code shall confirm to the PEP8 Style Guide.

Note

This includes the 79 character limit!

  • Doc Strings shall confirm to the PEP257 Convention.

Note

Arguments, Keyword Arguments, Return and Exceptions must be documented with the appropriate Sphinx`Python Domain <http://sphinx-doc.org/latest/domains.html#the-python-domain>`_.

Revision History

  • Commits shall be small tangible pieces of work. - Each commit must be concise and manageable. - Large changes are to be done over smaller commits.
  • There shall be no commit squashing.
  • Rebase your changes as often as you can.

Unit Tests

  • Every new feature and bug fix must be accompanied with a unit test. (The only exception to this are minor trivial changes).