Skip to content

Commit 34a7dd4

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7aa97e8 + f7e490a commit 34a7dd4

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/sphinx.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,18 @@ jobs:
3535
shell: bash -l {0}
3636
run: |
3737
conda install --yes -c conda-forge --file requirements.txt
38-
pip install nose-timer
38+
export PATH=/usr/share/miniconda/envs/test/bin/:$PATH
3939
40-
- name: Run nosetest
40+
- name: Lint with flake8
4141
run: |
42-
export PATH=/usr/share/miniconda/envs/test/bin/:$PATH
43-
nosetests -v --with-timer --with-coverage --cover-erase --cover-inclusive --cover-package=pySDC/core,pySDC/implementations,pySDC/helpers,pySDC/tutorial,pySDC/projects --cover-html --cover-html-dir=doc/build/test_coverage pySDC/tests
44-
42+
pip install flake8 flake8-comprehensions flake8-bugbear
43+
flake8 pySDC
44+
45+
- name: Run pytest
46+
run: |
47+
pip install pytest-cov
48+
pytest --cov=pySDC --cov-config=.coveragerc --cov-report=html --cov-report=term --durations=0 pySDC/tests
49+
4550
- name: Build
4651
uses: ammaraskar/sphinx-action@master
4752
with:

0 commit comments

Comments
 (0)