hallowed-artist-8187
02/05/2024, 1:22 AMpyproject.toml files. When I run pants test ::, it ends up installing some problematic package that is normally never installed when using poetry or pip directly 👀careful-address-89803
02/05/2024, 1:28 AMpants test :: then "badpackage" gets installed. Normally, though, something like pip install mypackage doesn't include "badpackage"?hallowed-artist-8187
02/05/2024, 1:28 AMcareful-address-89803
02/05/2024, 1:30 AMbroad-processor-92400
02/05/2024, 1:30 AMpants test some_dir:: pants test some_dir/sub:: until you get to an individual file pants test some_dir/sub/this_file_is_a_problem.py and then you can start investigating with tools like pants dependencies --transitive some_dir/sub/this_file_is_a_problem.py to print out what pants is pulling in. (Although this won't include the transitive dependencies of PyPI requirements, so you might need to do some extra digging there.)hallowed-artist-8187
02/05/2024, 1:38 AMrequirements.txt in an old examples folder 🤦hallowed-artist-8187
02/05/2024, 1:38 AMpants dependencies --transitive was very helpful 🙂