How can I check that the python dependencies are g...
# general
a
How can I check that the python dependencies are getting pulled from the customer repository which I mentioned [python-repos] indexes.add = ["https://custom-cheeseshop.net/simple"]. i have ran pants test :: but couldn't get anything
1
b
If you add an index, you're still using PyPI as the primary index: https://www.pantsbuild.org/2.20/reference/subsystems/python-repos#indexes
If that's what you meant, you can just try depending on a package in your private repo not on pypi
a
Can I make my private repo as primary/default index?
b
Yes, just assign, don't use
.add
a
It worked
Thanks