Skip to content

Commit 9821732

Browse files
committed
restructure workflow
1 parent b7e0d4c commit 9821732

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

.github/workflows/run-tests-condaforge.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,16 @@ jobs:
3232
miniforge-version: "latest"
3333
use-mamba: true
3434
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
35-
- run: conda --version
36-
- run: python -V
35+
- run: |
36+
conda --version
37+
mamba --version
38+
python -V
3739
- run: conda list
3840
- run: conda install pyactivestorage
39-
- run: conda install moto, pytest, pytest-xdist
41+
- run: |
42+
conda install moto
43+
conda install pytest
44+
conda install pytest-xdist
4045
- run: conda list
4146
- run: pytest -n 2
4247

@@ -58,10 +63,15 @@ jobs:
5863
miniforge-version: "latest"
5964
use-mamba: true
6065
mamba-version: "2.0.5" # https://github.com/conda-incubator/setup-miniconda/issues/392
61-
- run: conda --version
62-
- run: python -V
66+
- run: |
67+
conda --version
68+
mamba --version
69+
python -V
6370
- run: conda list
6471
- run: conda install -c conda-forge git
6572
- run: conda install pyactivestorage
66-
- run: conda install moto, pytest, pytest-xdist
73+
- run: |
74+
conda install moto
75+
conda install pytest
76+
conda install pytest-xdist
6777
- run: pytest -n 2

0 commit comments

Comments
 (0)