File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 73
73
pip install coverage
74
74
75
75
- name : Test typing_extensions with coverage
76
- if : ${{ !startsWith(matrix.python-version, 'pypy') }}
77
76
run : |
78
77
# Be wary of running `pip install` here, since it becomes easy for us to
79
78
# accidentally pick up typing_extensions as installed by a dependency
82
81
# Run tests under coverage
83
82
export COVERAGE_FILE=.coverage_${{ matrix.python-version }}
84
83
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
93
84
94
85
- name : Archive code coverage results
95
86
id : archive-coverage
You can’t perform that action at this time.
0 commit comments