From 3d3a3c9525db022ec665a704fec626fe0211cd05 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Fri, 15 Mar 2024 22:00:13 +0100 Subject: [PATCH] Fix cache info assertion --- .github/actions/test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 5cb45f4b..ad54f4a1 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -82,7 +82,7 @@ runs: python3 -m pip cache list || true # assert no whl files have been built - python3 -m pip cache info | grep "Locally built wheels size:" | (! grep -v "Locally built wheels size: 0") + python3 -m pip cache info | grep "Number of locally built wheels:" | (! grep -v "Number of locally built wheels: 0") shell: bash - name: Update expectation files