<#11386 Testing Python packages which rely on entr...
# github-notifications
c
#11386 Testing Python packages which rely on entry points defined in the same package Issue created by michaelboulton I'm trying to use Pants v2 for my project but it relies on some entry points that are defined in the setup.cfg of the package. If I create a wheel using
python_distribution
, specify the
entry_points
, and install that wheel then everything works fine, but when I use
python_tests()
to test the code it won't work because when running the tests Pants doesn't seem to expose entry points from the setup.cfg like tox does, or like doing
pip install -e .
Is there a way to get this working or is this something that isn't supported at the moment? pantsbuild/pants