From bc9ed4d179f6304b7445be0bce97bc2ca3ac1aaa Mon Sep 17 00:00:00 2001 From: Mehdi Chinoune Date: Mon, 4 Apr 2022 08:25:35 +0100 Subject: [PATCH] CI: run `pip check` with & without reverse-dependencies installed --- .ci/ci-check.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/ci-check.py b/.ci/ci-check.py index 40ced82ab9..3c84a577fc 100644 --- a/.ci/ci-check.py +++ b/.ci/ci-check.py @@ -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)