(
req, # type: InstallRequirement
)
| 51 | |
| 52 | |
| 53 | def get_dependency_chain( |
| 54 | req, # type: InstallRequirement |
| 55 | ): |
| 56 | chain = [] |
| 57 | while req: |
| 58 | chain.append(req.name) |
| 59 | req = req.comes_from |
| 60 | return chain[::-1] |
| 61 | |
| 62 | |
| 63 | def check_package(pkg): |
no outgoing calls
no test coverage detected