Return a list of all the dists from `_package` that are not the `_dist` object
(_package, _dist)
| 2010 | """ |
| 2011 | |
| 2012 | def get_other_dists(_package, _dist): |
| 2013 | """ |
| 2014 | Return a list of all the dists from `_package` that are not the `_dist` |
| 2015 | object |
| 2016 | """ |
| 2017 | return [d for d in _package.get_distributions() if d != _dist] |
| 2018 | |
| 2019 | local_packages = get_local_packages(directory=dest_dir) |
| 2020 | packages_by_name = defaultdict(list) |
no test coverage detected