Skip to content

Commit f116c2d

Browse files
committed
conda -> mamba
1 parent e8c9c7e commit f116c2d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,21 @@ jobs:
3434
with:
3535
auto-update-conda: true
3636
python-version: 3.9
37+
mamba-version: "*"
3738
use-only-tar-bz2: true
3839

3940
- name: Install dependencies
4041
run: |
41-
conda install --yes -c conda-forge --file requirements.txt
42+
mamba install --yes -c conda-forge --file requirements.txt
4243
4344
- name: Lint with flake8
4445
run: |
45-
conda install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
46+
mamba install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
4647
flake8 pySDC
4748
4849
- name: Run pytest
4950
run: |
50-
conda install --yes -c conda-forge pytest-cov
51+
mamba install --yes -c conda-forge pytest-cov
5152
pytest -v --cov=pySDC --cov-config=.coveragerc --cov-report=html --cov-report=term --durations=0 pySDC/tests
5253
5354
- name: Build documentation

pySDC/helpers/visualization_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def show_residual_across_simulation(stats, fname='residuals.png'):
4242
if iter != -1:
4343
residual[iter - 1, step] = np.log10(v)
4444

45-
# Set up latex stuff and fonts
45+
# Set up plotting stuff and fonts
4646
rc('font', **{"sans-serif": ["Arial"], "size": 30})
4747
rc('legend', fontsize='small')
4848
rc('xtick', labelsize='small')

0 commit comments

Comments
 (0)