Skip to content

Commit 827655f

Browse files
authored
Update sphinx.yml
1 parent 6721964 commit 827655f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/sphinx.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
jobs:
77
docs:
88
runs-on: ubuntu-latest
9+
10+
defaults:
11+
run:
12+
shell: bash -l {0}
13+
914
steps:
1015
- name: Checkout
1116
uses: actions/checkout@v1
@@ -31,19 +36,18 @@ jobs:
3136
use-only-tar-bz2: true
3237

3338
- name: Install dependencies
34-
shell: bash -l {0}
3539
run: |
3640
conda install --yes -c conda-forge --file requirements.txt
37-
export PATH=/usr/share/miniconda/envs/test/bin/:$PATH
41+
# export PATH=/usr/share/miniconda/envs/test/bin/:$PATH
3842
3943
- name: Lint with flake8
4044
run: |
41-
pip install flake8 flake8-comprehensions flake8-bugbear
45+
conda install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
4246
flake8 pySDC
4347
4448
- name: Run pytest
4549
run: |
46-
pip install pytest-cov
50+
conda install --yes -c conda-forge install pytest-cov
4751
pytest --cov=pySDC --cov-config=.coveragerc --cov-report=html --cov-report=term --durations=0 pySDC/tests
4852
4953
- name: Build

0 commit comments

Comments
 (0)