From 0d9041cc9fd4578dc043eaa7b30f1eb4ecb9fbfb Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Thu, 12 Sep 2024 15:30:31 -0500 Subject: [PATCH] ci: List Python packages installed before testing * Add an easy to parse log of the environment used for each test, which is useful for debugging differences between CI jobs seperated in time. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 488c3594..f24bce24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,6 +60,9 @@ jobs: echo $PATH python -m pip install '.[test]' -v + - name: List installed Python packages + run: python -m pip list + - name: Test package run: python -m pytest -vv -rs -Wd