Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 608 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (22 loc) · 608 Bytes

Local Development and testing

We accept all kinds of contributions, whether they are bug fixes, pull requests or documentation updates!

Setting up the local enviroment is done with python poetry

> poetry install

Linting with tox

After making code changes, please run the linters and fix all errors:

> poetry run tox --elinter

Auto formatting code

After making code changes, please run code formatters:

> poetry runtox --eformatter

Running tests

We require unit tests for all code changes.

Run tests:

> poetry run tox