@@ -141,6 +141,9 @@ jobs:
141141 data_manager :
142142 name : Test experimental data manager
143143 runs-on : ubuntu-latest
144+ strategy :
145+ matrix :
146+ pattern : ["not slow and not network and not clipboard", "slow"]
144147 steps :
145148
146149 - name : Checkout
@@ -152,43 +155,11 @@ jobs:
152155 - name : Run tests
153156 env :
154157 PANDAS_DATA_MANAGER : array
158+ PATTERN : ${{ matrix.pattern }}
159+ PYTEST_WORKERS : " auto"
155160 run : |
156161 source activate pandas-dev
162+ ci/run_tests.sh
157163
158- pytest pandas/tests/frame/
159- pytest pandas/tests/reductions/
160- pytest pandas/tests/generic/test_generic.py
161- pytest pandas/tests/arithmetic/
162- pytest pandas/tests/groupby/
163- pytest pandas/tests/resample/
164- pytest pandas/tests/reshape/merge
165- pytest pandas/tests/series/
166- pytest pandas/tests/indexing/
167-
168- pytest pandas/tests/test_*
169- pytest pandas/tests/api/
170- pytest pandas/tests/apply/
171- pytest pandas/tests/arrays/
172- pytest pandas/tests/base/
173- pytest pandas/tests/computation/
174- pytest pandas/tests/config/
175- pytest pandas/tests/dtypes/
176- pytest pandas/tests/extension/
177- pytest pandas/tests/generic/
178- pytest pandas/tests/indexes/
179- pytest pandas/tests/internals/
180- pytest pandas/tests/io/test_* -m "not slow and not clipboard"
181- pytest pandas/tests/io/excel/ -m "not slow and not clipboard"
182- pytest pandas/tests/io/formats/ -m "not slow and not clipboard"
183- pytest pandas/tests/io/parser/ -m "not slow and not clipboard"
184- pytest pandas/tests/io/sas/ -m "not slow and not clipboard"
185- pytest pandas/tests/io/xml/ -m "not slow and not clipboard"
186- pytest pandas/tests/libs/
187- pytest pandas/tests/plotting/
188- pytest pandas/tests/scalar/
189- pytest pandas/tests/strings/
190- pytest pandas/tests/tools/
191- pytest pandas/tests/tseries/
192- pytest pandas/tests/tslibs/
193- pytest pandas/tests/util/
194- pytest pandas/tests/window/
164+ - name : Print skipped tests
165+ run : python ci/print_skipped.py
0 commit comments