File tree 2 files changed +2
-12
lines changed
2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change 87
87
TEST_ARGS : ${{ matrix.test_args || '' }}
88
88
PYTEST_WORKERS : ' auto'
89
89
PYTEST_TARGET : ${{ matrix.pytest_target || 'pandas' }}
90
- IS_PYPY : ${{ contains(matrix.env_file, 'pypy') }}
91
- # TODO: re-enable coverage on pypy, its slow
92
- COVERAGE : ${{ !contains(matrix.env_file, 'pypy') }}
93
90
concurrency :
94
91
# https://github.community/t/concurrecy-not-work-for-push/183068/7
95
92
group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}
@@ -158,16 +155,13 @@ jobs:
158
155
159
156
- name : Test (not single_cpu)
160
157
uses : ./.github/actions/run-tests
161
- # TODO: Don't continue on error for PyPy
162
- continue-on-error : ${{ env.IS_PYPY == 'true' }}
158
+ if : ${{ matrix.name != 'Pypy' }}
163
159
env :
164
160
# Set pattern to not single_cpu if not already set
165
161
PATTERN : ${{ env.PATTERN == '' && 'not single_cpu' || matrix.pattern }}
166
162
167
163
- name : Test (single_cpu)
168
164
uses : ./.github/actions/run-tests
169
- # TODO: Don't continue on error for PyPy
170
- continue-on-error : ${{ env.IS_PYPY == 'true' }}
171
165
env :
172
166
PATTERN : ' single_cpu'
173
167
PYTEST_WORKERS : 1
Original file line number Diff line number Diff line change @@ -12,11 +12,7 @@ if [[ "not network" == *"$PATTERN"* ]]; then
12
12
export http_proxy=http://1.2.3.4 https_proxy=http://1.2.3.4;
13
13
fi
14
14
15
- if [[ " $COVERAGE " == " true" ]]; then
16
- COVERAGE=" -s --cov=pandas --cov-report=xml --cov-append"
17
- else
18
- COVERAGE=" " # We need to reset this for COVERAGE="false" case
19
- fi
15
+ COVERAGE=" -s --cov=pandas --cov-report=xml --cov-append"
20
16
21
17
# If no X server is found, we use xvfb to emulate it
22
18
if [[ $( uname) == " Linux" && -z $DISPLAY ]]; then
You can’t perform that action at this time.
0 commit comments