Install latest release on PyPI.
pip install fastpickle
(Optional) Create an virtual environment and step into.
make virtualenv
source .venv/bin/activate
Install fastpickle
in editable development model.
make install
Run automatic formatter.
make fmt
Run linter (type checking, variable declaration, etc.).
make lint
Run unit tests. Afterwards, you can check the test coverage in htmlcov/index.html
(browser) or coverage.xml
.
make test
Clean up temporary files.
make clean