Hi, I just encountered a potential issue while doing the following steps:
- I added
poetry-pre-commit-plugin to my poetry dependencies in pyproject.toml
- I ran
poetry lock and poetry install and I see this line: - Installing poetry-pre-commit-plugin (0.2.2)
- It's only upon running
poetry install again that I see this:
Installing pre-commit hooks...
pre-commit hooks successfully installed
It's my understanding that this occurs because the plugin must first be installed in order to be activated upon running poetry install, but I'm not sure if this is the expected behavior for folks using this package.
I was hoping to have the initial poetry install run poetry run pre-commit install if appropriate. Is that what is expected? If not, would this be possible?
Hi, I just encountered a potential issue while doing the following steps:
poetry-pre-commit-pluginto my poetry dependencies inpyproject.tomlpoetry lockandpoetry installand I see this line:- Installing poetry-pre-commit-plugin (0.2.2)poetry installagain that I see this:It's my understanding that this occurs because the plugin must first be installed in order to be activated upon running
poetry install, but I'm not sure if this is the expected behavior for folks using this package.I was hoping to have the initial
poetry installrunpoetry run pre-commit installif appropriate. Is that what is expected? If not, would this be possible?