Skip to content

Commit f7e490a

Browse files
authored
Update sphinx.yml
1 parent 6825758 commit f7e490a

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

.github/workflows/sphinx.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,14 @@ jobs:
3939
4040
- name: Lint with flake8
4141
run: |
42-
conda install --yes -c conda-forge flake8 flake8-comprehensions flake8-bugbear
43-
conda list
44-
echo $PATH
45-
ls -ral /usr/share/miniconda/envs/test/bin/
46-
/usr/share/miniconda/envs/test/bin/flake8 pySDC
42+
pip install flake8 flake8-comprehensions flake8-bugbear
43+
flake8 pySDC
4744
48-
- name: Run nosetest
45+
- name: Run pytest
4946
run: |
50-
pip install nose-timer
51-
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
52-
47+
pip install pytest-cov
48+
pytest --cov=pySDC --cov-config=.coveragerc --cov-report=html --cov-report=term --durations=0 pySDC/tests
49+
5350
- name: Build
5451
uses: ammaraskar/sphinx-action@master
5552
with:

0 commit comments

Comments
 (0)