Skip to content

Commit 9808f18

Browse files
committed
List installed packages from micromamba
Reverts 69bb40d in #2435.
1 parent 06c89e4 commit 9808f18

File tree

6 files changed

+25
-1
lines changed

6 files changed

+25
-1
lines changed

.github/workflows/cache_data.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
packaging
5353
build
5454
55+
# Show installed pkg information for postmortem diagnostic
56+
- name: List installed packages
57+
run: mamba list
58+
5559
# Install the package that we want to test
5660
- name: Install the package
5761
run: |

.github/workflows/ci_docs.yml

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ jobs:
9999
sphinx-gallery
100100
sphinx_rtd_theme
101101
102+
# Show installed pkg information for postmortem diagnostic
103+
- name: List installed packages
104+
run: mamba list
105+
102106
# Download cached remote files (artifacts) from GitHub
103107
- name: Download remote data from GitHub
104108
uses: dawidd6/[email protected]

.github/workflows/ci_doctests.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ jobs:
6868
pytest-doctestplus
6969
pytest-mpl
7070
71+
# Show installed pkg information for postmortem diagnostic
72+
- name: List installed packages
73+
run: mamba list
74+
7175
# Download cached remote files (artifacts) from GitHub
7276
- name: Download remote data from GitHub
7377
uses: dawidd6/[email protected]

.github/workflows/ci_tests.yaml

+5-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
optional-packages: ''
6868
- python-version: '3.11'
6969
numpy-version: '1.24'
70-
optional-packages: ' contextily geopandas ipython rioxarray sphinx-gallery'
70+
optional-packages: ' contextily geopandas ipython rioxarray sphinx-gallery'
7171

7272
timeout-minutes: 30
7373
defaults:
@@ -122,6 +122,10 @@ jobs:
122122
pytest-doctestplus
123123
pytest-mpl
124124
125+
# Show installed pkg information for postmortem diagnostic
126+
- name: List installed packages
127+
run: mamba list
128+
125129
# Download cached remote files (artifacts) from GitHub
126130
- name: Download remote data from GitHub
127131
uses: dawidd6/[email protected]

.github/workflows/ci_tests_dev.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ jobs:
118118
zlib
119119
geopandas
120120
121+
# Show installed pkg information for postmortem diagnostic
122+
- name: List installed packages
123+
run: mamba list
124+
121125
# Install dependencies from PyPI
122126
- name: Install dependencies
123127
run: |

.github/workflows/ci_tests_legacy.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ jobs:
8383
pytest-doctestplus
8484
pytest-mpl
8585
86+
# Show installed pkg information for postmortem diagnostic
87+
- name: List installed packages
88+
run: mamba list
89+
8690
# Download cached remote files (artifacts) from GitHub
8791
- name: Download remote data from GitHub
8892
uses: dawidd6/[email protected]

0 commit comments

Comments
 (0)