I use poetry to manage my projects dependencies and tests. I usually create a new virtual environment for each project, with a .venv
directory inside of the project directory.
I would like to use pyenv virtualenv to automatically activate this projects virtualenv when inside the project directory as a local
one, eg:
pyenv virtualenv local <my venv that also lives inside of this project>
Is this achievable, or do I have to create my virtualenvs inside the .pyenv directory?