Skip to content
Chris Elenbaas edited this page Mar 25, 2024 · 1 revision

Poetry

Project dependencies are specified in the pyproject.toml file in the root directory of the project.

Poetry website

Install dependencies:

$ poetry install

Start a Poetry shell:

$ poetry shell

Within the shell PyTest and MyPy can be run accordingly:

$ mypy -p opensquirrel
$ pytest
Clone this wiki locally