Skip to content

Commit

Permalink
Merge pull request #71 from theOehrly/ci_fix
Browse files Browse the repository at this point in the history
Fix ci test failures
  • Loading branch information
Chilipp authored Apr 18, 2022
2 parents 1f4abeb + bba62da commit cf82dc3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ jobs:
run: |
python -m pip install --upgrade pip
SPHINX=Sphinx
JINJA2=jinja2
if [[ $SPHINX_VERSION != "" ]]; then
SPHINX="${SPHINX}==${SPHINX_VERSION}";
JINJA2="${JINJA2}<3.1";
fi
pip install pytest pytest-cov codecov "${SPHINX}" -e .
pip install pytest pytest-cov codecov "${SPHINX}" "${JINJA2}" -e .
- name: Test with pytest
run: |
pytest --cov=autodocsumm --cov-report=xml tests
Expand Down

0 comments on commit cf82dc3

Please sign in to comment.