From e07355ee81665450b7b586c1315627f42bb4487b Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Sat, 27 Mar 2021 10:44:50 -0500 Subject: [PATCH] Add conda list step --- .github/workflows/tests.yml | 4 ++++ .github/workflows/upstream.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 32a1f82..3b13363 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,6 +28,10 @@ jobs: shell: bash -l {0} run: python -m pip install -e . + - name: List installed packages + shell: bash -l {0} + run: conda list + - name: Run tests shell: bash -l {0} run: python -m pytest --cov=xhistogram --cov-report=xml xhistogram diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml index c2d2ae4..d072b77 100644 --- a/.github/workflows/upstream.yml +++ b/.github/workflows/upstream.yml @@ -32,6 +32,10 @@ jobs: shell: bash -l {0} run: python -m pip install -e . + - name: List installed packages + shell: bash -l {0} + run: conda list + - name: Run tests shell: bash -l {0} run: python -m pytest --cov=xhistogram --cov-report=xml xhistogram