summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-12 23:04:29 +0100
committerGitHub <noreply@github.com>2021-07-12 23:04:29 +0100
commitdfce27f1e8592162f5c6ce0cecb287c7eac64c6e (patch)
tree8eb080e47e80b9249726a6d1f2916f06c037d36e /.github
parent210712fff0aec4baa97ebae1095ba0d9ddf5b13a (diff)
downloadgitpython-dfce27f1e8592162f5c6ce0cecb287c7eac64c6e.tar.gz
Update pythonpackage.yml
Move pytest before Documentation in workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pythonpackage.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml
index 67832dc3..4d3652a3 100644
--- a/.github/workflows/pythonpackage.yml
+++ b/.github/workflows/pythonpackage.yml
@@ -62,12 +62,6 @@ pythonpackage.yml
pip install mypy
mypy -p git
- - name: Documentation
- run: |
- set -x
- pip install -r doc/requirements.txt
- make -C doc html
-
- name: Test with pytest
run: |
set -x
@@ -75,3 +69,11 @@ pythonpackage.yml
pytest
# pytest settings in tox.ini[pytest]
continue-on-error: true
+
+ - name: Documentation
+ run: |
+ set -x
+ pip install -r doc/requirements.txt
+ make -C doc html
+
+