Skip to content

Commit 7ce86e6

Browse files
committed
reverting back to conda...
1 parent 0831c29 commit 7ce86e6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/cache@v2
2525
env:
2626
# Increase this value to reset cache if etc/example-environment.yml has not changed
27-
CACHE_NUMBER: 1
27+
CACHE_NUMBER: 2
2828
with:
2929
path: ~/conda_pkgs_dir
3030
key:
@@ -34,23 +34,23 @@ jobs:
3434
with:
3535
auto-update-conda: true
3636
python-version: 3.9
37-
mamba-version: "*"
38-
channels: conda-forge,defaults
39-
channel-priority: true
4037
use-only-tar-bz2: true
41-
38+
# mamba-version: "*"
39+
# channels: conda-forge,defaults
40+
# channel-priority: true
41+
4242
- name: Install dependencies
4343
run: |
44-
mamba install --yes -c conda-forge --file requirements.txt
44+
conda install --yes -c conda-forge --file requirements.txt
4545
4646
- name: Lint with flake8
4747
run: |
48-
mamba install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
48+
conda install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
4949
flake8 pySDC
5050
5151
- name: Run pytest
5252
run: |
53-
mamba install --yes -c conda-forge pytest-cov
53+
conda install --yes -c conda-forge pytest-cov
5454
pytest -v --cov=pySDC --cov-config=.coveragerc --cov-report=html --cov-report=term --durations=0 pySDC/tests
5555
5656
- name: Build documentation

0 commit comments

Comments
 (0)