Skip to content

Commit

Permalink
update CI
Browse files Browse the repository at this point in the history
Signed-off-by: Xavier Dupre <[email protected]>
  • Loading branch information
xadupre committed May 21, 2024
1 parent 3f9a202 commit e908f7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI Linux
on: [push, pull_request]
jobs:
run:
name: Python ${{ matrix.python_version }}
name: Python ${{ matrix.python_version }} - sklearn ${{ matrix.sklearn_version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
2 changes: 2 additions & 0 deletions tests/test_algebra_onnx_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ def test_transpose2(self):
@unittest.skipIf(
sys.platform.startswith("win"), reason="onnx schema are incorrect on Windows"
)
@unittest.skipIf(TARGET_OPSET < 18, reason="not available")
def test_doc_onnx(self):
rst = get_rst_doc()
assert "**Summary**" in rst

@unittest.skipIf(
sys.platform.startswith("win"), reason="onnx schema are incorrect on Windows"
)
@unittest.skipIf(TARGET_OPSET < 18, reason="not available")
def test_doc_sklearn(self):
try:
rst = get_rst_doc_sklearn()
Expand Down

0 comments on commit e908f7c

Please sign in to comment.