Set up dev environment:
cd ~/your/repository/fork # Activate venv if you have one (recommended)
pip install -e .[dev] # Install dev dependencies (e.g. black, mypy, pre-commit)
pre-commit install # Install git pre-commit hooksRun unit tests with coverage:
py.test --cov=binarytree --cov-report=html # Open htmlcov/index.html in your browserBuild and test documentation:
python -m sphinx docs docs/_build # Open docs/_build/index.html in your browserThank you for your contribution!