To get a coverage report, run:
pytest --cov=src/unibox --cov-report=term-missing tests
To build the docs:
make docs host=0.0.0.0
# or in debug mode:
make check-docs
To manually release a new version (instead of make release
):
# python -m pip install build twine
python -m build
twine check dist/*
twine upload dist/*