Skip to content

Commit 7d6eef9

Browse files
authored
TEST-#2020: decrease parallel tests on Ubuntu (#2021)
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
1 parent 51edadb commit 7d6eef9

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -172,11 +172,10 @@ jobs:
172172
matrix:
173173
python-version: ["3.6", "3.7", "3.8"]
174174
engine: ["python", "ray", "dask"]
175-
part: ["reduction", "binary", "map_metadata", "udf", "default", "window", "indexing", "iter", "join_sort", 3]
176175
env:
177176
MODIN_ENGINE: ${{matrix.engine}}
178177
MODIN_MEMORY: 1000000000
179-
name: test (${{matrix.engine}}, part ${{matrix.part}}, python ${{matrix.python-version}})
178+
name: test-ubuntu (engine ${{matrix.engine}}, python ${{matrix.python-version}})
180179
steps:
181180
- uses: actions/checkout@v2
182181
with:
@@ -199,35 +198,41 @@ jobs:
199198
conda info
200199
conda list
201200
- name: Install HDF5
202-
if: matrix.part == 3
203201
run: sudo apt update && sudo apt install -y libhdf5-dev
204202
- shell: bash -l {0}
205-
run: pytest modin/pandas/test/dataframe/test_${{matrix.part}}.py
206-
if: matrix.part != 3
203+
run: pytest modin/pandas/test/dataframe/test_binary.py
204+
- shell: bash -l {0}
205+
run: pytest modin/pandas/test/dataframe/test_default.py
206+
- shell: bash -l {0}
207+
run: pytest modin/pandas/test/dataframe/test_indexing.py
208+
- shell: bash -l {0}
209+
run: pytest modin/pandas/test/dataframe/test_iter.py
210+
- shell: bash -l {0}
211+
run: pytest modin/pandas/test/dataframe/test_join_sort.py
212+
- shell: bash -l {0}
213+
run: pytest modin/pandas/test/dataframe/test_map_metadata.py
214+
- shell: bash -l {0}
215+
run: pytest modin/pandas/test/dataframe/test_reduction.py
216+
- shell: bash -l {0}
217+
run: pytest modin/pandas/test/dataframe/test_udf.py
218+
- shell: bash -l {0}
219+
run: pytest modin/pandas/test/dataframe/test_window.py
207220
- shell: bash -l {0}
208221
run: python -m pytest modin/pandas/test/test_series.py
209-
if: matrix.part == 3
210222
- shell: bash -l {0}
211223
run: python -m pytest modin/pandas/test/test_rolling.py
212-
if: matrix.part == 3
213224
- shell: bash -l {0}
214225
run: python -m pytest modin/pandas/test/test_concat.py
215-
if: matrix.part == 3
216226
- shell: bash -l {0}
217227
run: python -m pytest modin/pandas/test/test_groupby.py
218-
if: matrix.part == 3
219228
- shell: bash -l {0}
220229
run: python -m pytest modin/pandas/test/test_reshape.py
221-
if: matrix.part == 3
222230
- shell: bash -l {0}
223231
run: python -m pytest modin/pandas/test/test_general.py
224-
if: matrix.part == 3
225232
- shell: bash -l {0}
226233
run: python -m pytest modin/pandas/test/test_io.py
227-
if: matrix.part == 3
228234
- shell: bash -l {0}
229235
run: python -m pytest modin/experimental/pandas/test/test_io_exp.py
230-
if: matrix.part == 3
231236
- shell: bash -l {0}
232237
run: bash <(curl -s https://codecov.io/bash)
233238

0 commit comments

Comments
 (0)