From 258d1efc467c618c392aa9ba81f3168ac4f0dcf0 Mon Sep 17 00:00:00 2001 From: "Garth N. Wells" Date: Fri, 11 Oct 2024 07:51:09 +0100 Subject: [PATCH] Check installed packages --- .github/workflows/mac.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 5804cca7a..ece778236 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -30,8 +30,12 @@ jobs: python-version: "3.12" - name: Install dependencies (non-Python) run: brew install ninja + - name: Pip list (A) + run: pip -v list - name: Install Basix run: pip -v install .[test] + - name: Pip list (B) + run: pip -v list - name: Run units tests run: | pip install pytest-xdist