Skip to content
This repository has been archived by the owner on Jan 8, 2023. It is now read-only.

Latest commit

 

History

History
53 lines (31 loc) · 724 Bytes

CONTRIBUTING.rst

File metadata and controls

53 lines (31 loc) · 724 Bytes

Contributing

Dev setup

Install dev packages

Specify the [dev] option to install the development packages:

pip install -e ".[dev]"

Running tests

Use pytest to run all unit tests.

pytest

Building docs

Generate the docs:

cd docs
make html

You can then check out the generated HTML:

cd docs/build/html
python3 -m http.server

Formatting code

mia's code is formatted using black. Run the formatter as follows:

make format