Skip to content

Commit a03d78c

Browse files
committed
print packages
1 parent ba7a02d commit a03d78c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/linting_and_testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
if: ${{ matrix.os == 'windows-latest' && matrix.python-version == '3.10' }}
5555
run: |
5656
conda run -n test conda info
57-
conda run -n test conda list
5857
conda run -n test conda install -c loop3d -c conda-forge "gdal=3.4.3" python=${{ matrix.python-version }} -y
5958
conda run -n test conda install -c loop3d -c conda-forge --file dependencies.txt python=${{ matrix.python-version }} -y
6059
conda run -n test conda install pytest python=${{ matrix.python-version }} -y
@@ -63,15 +62,16 @@ jobs:
6362
if: ${{ matrix.os != 'windows-latest' || matrix.python-version != '3.10' }}
6463
run: |
6564
conda run -n test conda info
66-
conda run -n test conda list
6765
conda run -n test conda install -c loop3d -c conda-forge gdal python=${{ matrix.python-version }} -y
6866
conda run -n test conda install -c loop3d -c conda-forge --file dependencies.txt python=${{ matrix.python-version }} -y
6967
conda run -n test conda install pytest python=${{ matrix.python-version }} -y
7068
7169
- name: Install map2loop
7270
run: |
7371
conda run -n test python -m pip install .
74-
72+
- name: print packages
73+
run: |
74+
conda run -n test conda list
7575
- name: Run tests
7676
run: |
7777
conda run -n test pytest

0 commit comments

Comments
 (0)