summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 11:36:58 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-04-11 11:36:58 +0800
commit391c0023675b8372cff768ff6818be456a775185 (patch)
tree9fcb0fd44476831141124ece59f52ee5f4dd4c3c /.github
parent97aec35365231c8f81c68bcab9e9fcf375d2b0dd (diff)
downloadgitpython-391c0023675b8372cff768ff6818be456a775185.tar.gz
Run tests right after linting
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 1fa21b5f..ed365ce4 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -47,6 +47,11 @@ jobs:
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 --ignore=W293,E265,E266,W503,W504,E731 --count --show-source --statistics
+ - name: Test with nose
+ run: |
+ set -x
+ pip install nose
+ nosetests -v --with-coverage
- name: Coverage
run: |
pip install codecov
@@ -59,8 +64,3 @@ jobs:
set -x
pip install -r doc/requirements.txt
make -C doc html
- - name: Test with nose
- run: |
- set -x
- pip install nose
- nosetests -v --with-coverage