miketheman / pytest-socket

Pytest Plugin to disable socket calls during tests

Home Page:https://pypi.org/project/pytest-socket/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

poetry no longer creates "editable" metadata file, adds work during tests

miketheman opened this issue · comments

poetry install --dev used to create the package local metadata, similar to python setup.py develop.
This usually created a pytest_socket.egg-info/ directory in the local path, but that's no longer the case.

Thus, during tests, running make test will always run the install target from the Makefile. It's not a long step, but we shouldn't run unnecessary commands if we don't have to.