Skip to content

Commit

Permalink
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 21, 2024
1 parent b48252c commit d5e88a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ jobs:
python -c "from lightgbm import __version__;print('lightgbm', __version__)"
python -c "from xgboost import __version__;print('xgboost', __version__)"
python -c "from catboost import __version__;print('catboost', __version__)"
python -c "from h2o import __version__;print('h2o', __version__)"
python -c "from hummingbirdml import __version__;print('hummingbirdml', __version__)"
python -c "import onnx.defs;print('onnx_opset_version', onnx.defs.onnx_opset_version())"
Expand All @@ -116,7 +115,9 @@ jobs:
run: pytest --maxfail=10 --durations=10 tests/svmlib

- name: Run tests h2o
run: pytest --maxfail=10 --durations=10 tests/h2o
run: |
pip install h2o
pytest --maxfail=10 --durations=10 tests/h2o
- name: Run tests pysparkml
run: pytest --maxfail=10 --durations=10 tests/sparkml
Expand Down

0 comments on commit d5e88a0

Please sign in to comment.