Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Dupre <xadupre@microsoft.com>
  • Loading branch information
xadupre committed May 22, 2024
1 parent 82c7417 commit 0dbcf53
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ jobs:
${{ runner.os }}-
- name: Install specific versions
run: pip install "${{ matrix.onnx_version }}" "${{ matrix.onnxrt_version }}" "numpy${{ matrix.numpy_version }}" "scikit-learn${{ matrix.sklearn_version}}" "scipy${{ matrix.scipy_version }}" "xgboost${{ matrix.xgboost_version }}" "lightgbm${{ matrix.lgbm_version }}"
run: pip install "${{ matrix.onnx_version }}" "${{ matrix.onnxrt_version }}" "numpy${{ matrix.numpy_version }}" "scikit-learn${{ matrix.sklearn_version}}" "scipy${{ matrix.scipy_version }}" "xgboost${{ matrix.xgboost_version }}"

- name: Install lightgbm
if: matrix.os != 'macos-latest'
run: pip install "lightgbm${{ matrix.lgbm_version }}"

- name: Install
run: pip install -e .
Expand Down Expand Up @@ -100,6 +104,7 @@ jobs:
run: pytest --maxfail=10 --durations=10 tests/catboost

- name: Run tests lightgbm
if: matrix.os != 'macos-latest'
run: pytest --maxfail=10 --durations=10 tests/lightgbm

- name: Run tests xgboost
Expand Down

0 comments on commit 0dbcf53

Please sign in to comment.