Skip to content

Commit d938229

Browse files
authored
Add temporary workaround for coveralls (#169)
2 parents 5ea862f + beb539f commit d938229

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: .cirrus.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ env:
5252
-n 5 --randomly-seed=42 -rfEx --durations 10 --color yes
5353
submit_coverage_script:
5454
- pipx run coverage xml -o coverage.xml
55-
- pipx run coveralls --submit coverage.xml
55+
- pipx run 'coveralls<4' --submit coverage.xml
56+
# ^-- https://github.com/TheKevJames/coveralls-python/issues/434
5657

5758
# Deep clone script for POSIX environments (required for setuptools-scm)
5859
.clone_script: &clone |
@@ -159,7 +160,8 @@ finalize_task:
159160
container: {image: "python:3.10-bullseye"}
160161
depends_on: [test]
161162
<<: *task-template
162-
install_script: pip install coveralls
163+
install_script: pip install 'coveralls<4'
164+
# ^-- https://github.com/TheKevJames/coveralls-python/issues/434
163165
finalize_coverage_script: coveralls --finish
164166

165167
linkcheck_task:

0 commit comments

Comments
 (0)