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 fca0c61 commit 2b52938Copy full SHA for 2b52938
.github/workflows/ci.yml
@@ -40,10 +40,11 @@ jobs:
40
- name: Create cov
41
run: coverage xml
42
- name: Upload to Codecov
43
- if: matrix.python-version == '3.11'
+ if: false && (matrix.python-version == '3.11')
44
uses: codecov/codecov-action@v4
45
with:
46
name: sphinx-exercise-pytest-py3.11
47
+ token: "${{ secrets.CODECOV_TOKEN }}"
48
flags: pytests
49
file: ./coverage.xml
50
fail_ci_if_error: true
pyproject.toml
@@ -64,6 +64,7 @@ testing = [
64
"pytest~=8.0.0",
65
"sphinx>=5,<8",
66
"texsoup",
67
+ "defusedxml", # Required by sphinx-testing
68
]
69
70
[project.urls]
0 commit comments