From 15104b7648608aab5566c87ec9bda37e3917ecda Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 28 May 2024 21:18:10 -0500 Subject: [PATCH] ci: List installed Python packages * List installed packages during CI. --- .github/workflows/CI.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c73d8d63..0f8e8b2d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -37,6 +37,8 @@ jobs: run: | python -m pip install --upgrade pip setuptools wheel python -m pip install .[test] + - name: List installed Python packages + run: python -m pip list - name: Static code analysis with flake8 run: | # stop the build if there are Python syntax errors or undefined names @@ -53,6 +55,8 @@ jobs: - name: Install pyhf backends run: | python -m pip install .[pyhf_backends] # install pyhf backends + - name: List installed Python packages + run: python -m pip list - name: Test with pytest, generate coverage report (skipping typeguard) if: matrix.python-version == '3.8' run: |