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.
1 parent 318914f commit 321f886Copy full SHA for 321f886
.github/workflows/main.yml
@@ -58,6 +58,12 @@ jobs:
58
PYTHONWARNINGS: ""
59
- name: Install Docutils ${{ matrix.docutils }}
60
run: python -m pip install --upgrade "docutils==${{ matrix.docutils }}.*"
61
+ if: "!endsWith(matrix.python, '-dev')"
62
+ - name: Install Docutils ${{ matrix.docutils }} (ignore warnings)
63
+ run: python -m pip install --upgrade "docutils==${{ matrix.docutils }}.*"
64
+ if: "endsWith(matrix.python, '-dev')"
65
+ env:
66
+ PYTHONWARNINGS: ""
67
- name: Test with pytest
68
run: python -m pytest -vv --durations 25
69
0 commit comments