Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 375 Bytes

README_dev.md

File metadata and controls

25 lines (18 loc) · 375 Bytes

Dev Notes

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/*