Steps:
python -m venv .venv
)source .venv/bin/activate
)pip install poetry
)poetry install
)
poetry install --with dev
poetry install --with test
poetry run python horao/main.py
)In order to install the testing dependencies you can run the following command poetry install --with test
.
You can run the tests using the poetry run pytest
command. This will run the tests in a virtual environment and ensure that the tests are run in a clean environment.
A coverage report is automatically generated when running pytest
.