-
Install poetry
curl -sSL https://install.python-poetry.org | python3 -
-
Install dependencies, including testing
poetry install -E test
We use pytest to run our tests. To run:
poetry run pytest
We use pre-commit hooks to manage linters. To install, run:
pre-commit install