CI: run pip check with & without reverse-dependencies installed

This commit is contained in:
Mehdi Chinoune
2022-04-04 08:25:35 +01:00
parent 1f83db04b9
commit bc9ed4d179

View File

@@ -197,9 +197,11 @@ def main() -> None:
for pkgloc in ARTIFACTS_LOCATION.glob("*.pkg.tar.*"):
with install_package(pkgloc):
pkgname = get_pkg_name(pkgloc)
with gha_group(f"Pip Output (without reverse dependencies): {pkgloc.name}"):
run_pip_check(pkgname)
rdeps = get_rdeps(pkgname)
with install_package(rdeps):
with gha_group(f"Pip Output: {pkgloc.name}"):
with gha_group(f"Pip Output (with reverse dependencies): {pkgloc.name}"):
run_pip_check(pkgname)