74
74
PATTERN : ${{ matrix.pattern }}
75
75
LANG : ${{ matrix.lang || 'C.UTF-8' }}
76
76
LC_ALL : ${{ matrix.lc_all || '' }}
77
- PANDAS_CI : ${{ matrix.pandas_ci || '1' }}
77
+ PANDAS_CI : ' 1'
78
78
TEST_ARGS : ${{ matrix.test_args || '' }}
79
- PYTEST_WORKERS : ${{ matrix.pytest_workers || 'auto' }}
79
+ PYTEST_WORKERS : ' auto'
80
80
PYTEST_TARGET : ${{ matrix.pytest_target || 'pandas' }}
81
81
NPY_PROMOTION_STATE : ${{ matrix.env_file == 'actions-311-numpydev.yaml' && 'weak' || 'legacy' }}
82
82
# Clipboard tests
88
88
89
89
services :
90
90
mysql :
91
- image : mysql:8.0.33
91
+ image : mysql:8
92
92
env :
93
93
MYSQL_ALLOW_EMPTY_PASSWORD : yes
94
94
MYSQL_DATABASE : pandas
@@ -101,7 +101,7 @@ jobs:
101
101
- 3306:3306
102
102
103
103
postgres :
104
- image : postgres:13
104
+ image : postgres:16
105
105
env :
106
106
PGUSER : postgres
107
107
POSTGRES_USER : postgres
@@ -116,7 +116,7 @@ jobs:
116
116
- 5432:5432
117
117
118
118
moto :
119
- image : motoserver/moto:4.1.13
119
+ image : motoserver/moto:5.0.0
120
120
env :
121
121
AWS_ACCESS_KEY_ID : foobar_key
122
122
AWS_SECRET_ACCESS_KEY : foobar_secret
@@ -148,9 +148,6 @@ jobs:
148
148
uses : ./.github/actions/build_pandas
149
149
# TODO: Re-enable once Pypy has Pypy 3.10 on conda-forge
150
150
if : ${{ matrix.name != 'Pypy' }}
151
- with :
152
- meson_args : ${{ matrix.meson_args }}
153
- cflags_adds : ${{ matrix.cflags_adds }}
154
151
155
152
- name : Test (not single_cpu)
156
153
uses : ./.github/actions/run-tests
@@ -317,7 +314,7 @@ jobs:
317
314
318
315
concurrency :
319
316
# https://github.community/t/concurrecy-not-work-for-push/183068/7
320
- group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.os }}-${{ matrix.pytest_target }} -dev
317
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.os }}-python -dev
321
318
cancel-in-progress : true
322
319
323
320
env :
0 commit comments