i have pants pytests that call a service that I’ve...
# general
g
i have pants pytests that call a service that I’ve built with pants. I know how to use ipdb in pytest, but I want to use it within the service. pdb works, but when I try to add ipdb to the requirements I get “Could not find a version that satisfies the requirement ipdb” even though i’m in python 3.10 and ipdb should be available. Has pants done something special to prevent users from using ipdb? i know it has to go in via
extra_requirements
to pytest
👍 1