Skip to content

Commit 4870869

Browse files
committed
Allow coverage issues
python/cpython#133925 affects coverage runs on Python 3.14.0.alpha.6 and onward
1 parent 8df30a4 commit 4870869

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/my_github_action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ jobs:
153153
- '3.14.0-alpha.6'
154154
- '3.14.0-alpha.7'
155155
- '3.14.0-beta.1'
156-
# Disabled because of issue #67 - '3.14.0-alpha.1', ..., '3.14.0-alpha.6'
157156
- 'pypy-2.7'
158157
- 'pypy-2.7-nightly'
159158
- 'pypy-3.6' # the latest available version of PyPy that supports Python 3.6
@@ -216,7 +215,7 @@ jobs:
216215
python -m unittest2 discover --start-directory=didyoumean --pattern=*.py || true
217216
- name: Run unit-tests with coverage
218217
run: |
219-
coverage run -m unittest discover --start-directory=didyoumean --pattern=*.py
218+
coverage run -m unittest discover --start-directory=didyoumean --pattern=*.py || true
220219
coverage run -m unittest2 discover --start-directory=didyoumean --pattern=*.py || true
221220
- name: Install locally
222221
run: |

0 commit comments

Comments
 (0)