diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fb26225613..39c81aac1a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -443,12 +443,20 @@ jobs: - run: python -m pytest -n 2 modin/tests/experimental/test_pipeline.py if: matrix.engine == 'python' || matrix.test_task == 'group_1' - uses: ./.github/actions/run-core-tests/group_1 + with: + parallel: ${{ matrix.engine == 'ray' && matrix.os == 'windows' && '-n 1' || '-n 2' }} if: matrix.engine == 'python' || matrix.test_task == 'group_1' - uses: ./.github/actions/run-core-tests/group_2 + with: + parallel: ${{ matrix.engine == 'ray' && matrix.os == 'windows' && '-n 1' || '-n 2' }} if: matrix.engine == 'python' || matrix.test_task == 'group_2' - uses: ./.github/actions/run-core-tests/group_3 + with: + parallel: ${{ matrix.engine == 'ray' && matrix.os == 'windows' && '-n 1' || '-n 2' }} if: matrix.engine == 'python' || matrix.test_task == 'group_3' - uses: ./.github/actions/run-core-tests/group_4 + with: + parallel: ${{ matrix.engine == 'ray' && matrix.os == 'windows' && '-n 1' || '-n 2' }} if: matrix.engine == 'python' || matrix.test_task == 'group_4' - run: python -m pytest -n 2 modin/tests/numpy if: matrix.engine == 'python' || matrix.test_task == 'group_4'