Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 783 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (23 loc) · 783 Bytes

Contributing Guide

Getting Started

Development Environment

Prerequisites:

  • Python 3.9+
  • Nox

Install the dependencies with nox -s develop

Running tests

We uses pytest for tests.

Run tests with nox -s tests.

Formatting your code

We use black and isort to keep our code formated.

Format the code with:

black ./youtube_bz/ ./tests
isort ./youtube_bz/ ./tests --profile=black

You can check the formatting with nox

nox -s lint

Commit Messages

We try to follow the Conventional Commits specification for our commit messages.