Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 550 Bytes

maintainers.md

File metadata and controls

31 lines (19 loc) · 550 Bytes

Maintainers

Some helpful bits to help manage this project.

Linting

Use make format to identify and clean up linting and other errors that will get flagged by pre-commit hooks run by GitHub Actions.

Testing

Setup

Install tox globally

pip install tox

Using pyenv to install Python versions 3.8 - 3.11.

Test locally

tox

If you update library requirements (aka the Pipfile[.lock]), make sure to regenerate the requirements.txt used by tox:

pipenv requirements > requirements.txt