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 86
86
TEST_ARGS : ${{ matrix.test_args || '' }}
87
87
PYTEST_WORKERS : ' auto'
88
88
PYTEST_TARGET : ${{ matrix.pytest_target || 'pandas' }}
89
- IS_PYPY : ${{ contains(matrix.env_file, 'pypy') }}
90
- # TODO: re-enable coverage on pypy, its slow
91
- COVERAGE : ${{ !contains(matrix.env_file, 'pypy') }}
92
89
concurrency :
93
90
# https://github.community/t/concurrecy-not-work-for-push/183068/7
94
91
group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}
@@ -157,16 +154,13 @@ jobs:
157
154
158
155
- name : Test (not single_cpu)
159
156
uses : ./.github/actions/run-tests
160
- # TODO: Don't continue on error for PyPy
161
- continue-on-error : ${{ env.IS_PYPY == 'true' }}
157
+ if : ${{ matrix.name != 'Pypy' }}
162
158
env :
163
159
# Set pattern to not single_cpu if not already set
164
160
PATTERN : ${{ env.PATTERN == '' && 'not single_cpu' || matrix.pattern }}
165
161
166
162
- name : Test (single_cpu)
167
163
uses : ./.github/actions/run-tests
168
- # TODO: Don't continue on error for PyPy
169
- continue-on-error : ${{ env.IS_PYPY == 'true' }}
170
164
env :
171
165
PATTERN : ' single_cpu'
172
166
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