Skip to content

Commit e4859df

Browse files
committed
Run PyPy tests under coverage
1 parent be27675 commit e4859df

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ jobs:
7373
pip install coverage
7474
7575
- name: Test typing_extensions with coverage
76-
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
7776
run: |
7877
# Be wary of running `pip install` here, since it becomes easy for us to
7978
# accidentally pick up typing_extensions as installed by a dependency
@@ -82,14 +81,6 @@ jobs:
8281
# Run tests under coverage
8382
export COVERAGE_FILE=.coverage_${{ matrix.python-version }}
8483
python -m coverage run -m unittest test_typing_extensions.py
85-
- name: Test typing_extensions no coverage on pypy
86-
if: ${{ startsWith(matrix.python-version, 'pypy') }}
87-
run: |
88-
# Be wary of running `pip install` here, since it becomes easy for us to
89-
# accidentally pick up typing_extensions as installed by a dependency
90-
cd src
91-
python --version # just to make sure we're running the right one
92-
python -m unittest test_typing_extensions.py
9384
9485
- name: Archive code coverage results
9586
id: archive-coverage

0 commit comments

Comments
 (0)