Skip to content

Latest commit

 

History

History
192 lines (128 loc) · 7.35 KB

CONTRIBUTING.md

File metadata and controls

192 lines (128 loc) · 7.35 KB

Contributing

This projects follows the Gitflow workflow. When contributing, please discuss the change you wish to make via Issues, email, or any other method with the maintainers of this repository before raising a Pull Request.

Dev Environment

To ensure version consistency with all required dependencies, you would need to use poetry. See the Dependencies section below on how to install it.

To start with the project:

git clone https://github.com/undp/azkv.git AzKV
cd AzKV
poetry install
pre-commit install

Dependencies

We build our project into a package and distribute it through the PyPI with poetry. We also use it to manage code dependencies. You would need to have poetry installed with the following command:

curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python

Formatting

To make our development more efficient and our code more consistent, we cede control over code formatting to black. As explained on black's GitHub page:

Black is the uncompromising Python code formatter. [...] Blackened code looks the same regardless of the project you're reading. Formatting becomes transparent after a while and you can focus on the content instead.

Code examples from Python docstrings (documentation embedded into the code) are also formatted using black conventions with the help of blacken-docs tool.

black formatter is automatically executed prior to committing changes to this repository with the help of pre-commit tool.

Linting

This project relies on the flake8 linter with the following plugins installed:

  • flake8-import-order - checks the ordering of imports

    Note: this project uses cryptography ordering style

  • flake8-bandit - checks for common security issues with bandit
  • flake8-blind-except - checks for blind except: statements
  • flake8-bugbear - finds likely bugs and design problems
  • flake8-builtins - validates that names of variables or parameters do not match Python builtins
  • flake8-docstrings - checks PEP 257 docstring conventions with pydocstyle
  • flake8-logging-format - checks logging format strings
  • flake8-mypy - performs type checking with mypy
  • pep8-naming - checks [PEP 8][PEP-8] naming conventions

Similarly to the black formatting, linting with flake8 is executed at every commit by pre-commit tool.

Testing

This project uses pytest framework to outline unit, functional and performance tests and tox to manage test environments and the workflow.

Our tests rely on the following pytest plugins:

  • pytest-benchmark - to run performance benchmarks
  • pytest-cov - to ensure adequate test coverage
  • pytest-instafail - to report failures while the test run is happening
  • pytest-lazy-fixture - to use test fixtures in pytest.mark.parametrize decorator
  • pytest-random-order - to randomize the order in which tests are run

NOTE: We expect 90% or more of the code in this project to be covered with tests, otherwise testing is configured to fail. We try to maintain this test coverage level and would ask you to cover features or bug fixes you introduce with enough test code.

In order to get just the packages to facilitate testing, run:

poetry install -v --extras=test

Sensitive Credentials

In order to provide credentials for functional tests following ENV variables have to be defined:

  • AZKV_CLIENT_ID - ClientId of the Service Principal with access to a Key Vault.
  • AZKV_CLIENT_SECRET - ClientSecret of the Service Principal with access to a Key Vault.
  • AZKV_TENANT - Azure AD tenant where the Service Principal with access rights to a Key Vault resides.

Limitations

All tests marked as @pytest.mark.functional are functional in nature and would require some live service to test against. To exclude these tests run pytest with -m "not functional" option. By default, all test environments defined in tox.ini would exclude functional tests.

Execute

To run all tests for all available versions of Python and generate HTML docs as well as test coverage reports, execute:

tox

If you want to execute a specific test environment mentioned in the envlist variable under [tox] section of the tox.ini file, run:

tox -e <env-name>

For example, you could just run linting with:

tox -e linting

Or, test the app functionality on Python3.6 with:

tox -e py36-functional

Commit messages

This project uses gitchangelog to automatically generate the content of CHANGELOG.md. So, it is important to follow a convention on how to format your git commit messages. In general, all commit messages should follow the structure below:

<subject>
<BLANK LINE>
<body>

<subject> should follow the standard gitchangelog convention below. See gitchangelog.rc example on GitHub for more information.

  • ACTION: [AUDIENCE:] SUBJ_MSG [!TAG ...]

  • ACTION indicates WHAT the change is about.

    • chg is for refactor, small improvement, cosmetic changes, etc
    • fix is for bug fixes
    • new is for new features, big improvement
  • AUDIENCE indicates WHO is concerned by the change.

    • dev is for developers (API changes, refactoring...)
    • user is for final users (UI changes)
    • pkg is for packagers (packaging changes)
    • test is for testers (test only related changes)
    • doc is for tech writers (doc only changes)
  • SUBJ_MSG is the subject itself.

  • TAGs are for commit filtering and are preceded with !. Commonly used tags are:

    • refactor is obviously for refactoring code only
    • minor is for a very meaningless change (a typo, adding a comment)
    • cosmetic is for cosmetic driven change (re-indentation, etc)
    • wip is for partial functionality.
  • EXAMPLES:

    • new: usr: support of bazaar implemented.
    • chg: re-indent some lines. !cosmetic
    • new: dev: update code to be compatible with killer lib ver1.2.3.
    • fix: pkg: update year of license coverage.
    • new: test: add tests around usability of feature Foo.
    • fix: typo in spelling. !minor

Pull Request Process

  1. Clone the repo to your workstation:

    git clone https://github.com/undp/pykv.git pykv
  2. Create a new feature branch named feature/fooBar from the master branch:

    git checkout -b feature/fooBar
  3. Introduce your modifications locally. Don't forget about corresponding tests!

  4. Commit your changes. Ensure your commit message follows the formatting convention described above.

    git commit -am "new: usr: add fooBar feature. (close #123)"
  5. Push the feature/fooBar branch to the remote origin

    git push origin feature/fooBar
  6. Create a new Pull Request for the repo.

  7. You may merge the Pull Request in once you have the sign-off from a repo owner. Or, if you do not have permission to merge, you may request the reviewer to merge it for you.