We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f4abeb + bba62da commit cf82dc3Copy full SHA for cf82dc3
.github/workflows/python-app.yml
@@ -31,10 +31,12 @@ jobs:
31
run: |
32
python -m pip install --upgrade pip
33
SPHINX=Sphinx
34
+ JINJA2=jinja2
35
if [[ $SPHINX_VERSION != "" ]]; then
36
SPHINX="${SPHINX}==${SPHINX_VERSION}";
37
+ JINJA2="${JINJA2}<3.1";
38
fi
- pip install pytest pytest-cov codecov "${SPHINX}" -e .
39
+ pip install pytest pytest-cov codecov "${SPHINX}" "${JINJA2}" -e .
40
- name: Test with pytest
41
42
pytest --cov=autodocsumm --cov-report=xml tests
0 commit comments