This project uses Python 3.9 because of some old dependencies for demucs. Link poetry to a Python 3.9 executable and then install dependencies.
poetry env use <python>
poetry install
poetry run app
poetry run pytest
# with coverage
poetry run pytest --cov=backend tests/
poetry run ruff check backend tests
poetry run mypy backend tests
poetry run tox