Skip to content

Commit

Permalink
ci: List installed Python packages
Browse files Browse the repository at this point in the history
* List installed packages during CI.
  • Loading branch information
matthewfeickert committed May 29, 2024
1 parent aad8010 commit 15104b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 15104b7

Please sign in to comment.