Skip to content

Commit 391c002

Browse files
committed
Run tests right after linting
1 parent 97aec35 commit 391c002

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎.github/workflows/pythonpackage.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ jobs:
4747
pip install flake8
4848
# stop the build if there are Python syntax errors or undefined names
4949
flake8 --ignore=W293,E265,E266,W503,W504,E731 --count --show-source --statistics
50+
- name: Test with nose
51+
run: |
52+
set -x
53+
pip install nose
54+
nosetests -v --with-coverage
5055
- name: Coverage
5156
run: |
5257
pip install codecov
@@ -59,8 +64,3 @@ jobs:
5964
set -x
6065
pip install -r doc/requirements.txt
6166
make -C doc html
62-
- name: Test with nose
63-
run: |
64-
set -x
65-
pip install nose
66-
nosetests -v --with-coverage

0 commit comments

Comments
 (0)