Skip to content
This repository has been archived by the owner on Jul 29, 2020. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 685 Bytes

DEVEL.md

File metadata and controls

13 lines (11 loc) · 685 Bytes

Code Review Guidelines

When doing code reviews, here are some things to be considered.

  • Normal design/code quality/style things
  • Do any changes need to be reflected in docs?
  • Were the appropriate system tests run?
  • Do the appropriate unit tests exist?
  • Is this a backwards-compatible change; Which branches should it go into?

Python Development Guidelines

  • Unit test all public interfaces
  • Format code according to the PEP8 standard.
  • Code format is enforced in the build using flake8 and pylint, the format check can be executed manually via make python-lint