Skip to content

Commit dfce27f

Browse files
authored
Update pythonpackage.yml
Move pytest before Documentation in workflow
1 parent 210712f commit dfce27f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,18 @@ pythonpackage.yml
6262
pip install mypy
6363
mypy -p git
6464
65-
- name: Documentation
66-
run: |
67-
set -x
68-
pip install -r doc/requirements.txt
69-
make -C doc html
70-
7165
- name: Test with pytest
7266
run: |
7367
set -x
7468
pip install -r requirements-dev.txt
7569
pytest
7670
# pytest settings in tox.ini[pytest]
7771
continue-on-error: true
72+
73+
- name: Documentation
74+
run: |
75+
set -x
76+
pip install -r doc/requirements.txt
77+
make -C doc html
78+
79+

0 commit comments

Comments
 (0)