From e908f7c4a7babd8ed5d4c0cc437ca813c81dd607 Mon Sep 17 00:00:00 2001 From: Xavier Dupre Date: Tue, 21 May 2024 13:07:28 +0200 Subject: [PATCH] update CI Signed-off-by: Xavier Dupre --- .github/workflows/linux-ci.yml | 2 +- tests/test_algebra_onnx_doc.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index e1af9d3ec..1a67942ec 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -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: diff --git a/tests/test_algebra_onnx_doc.py b/tests/test_algebra_onnx_doc.py index 1a2d8b722..2b7bd1471 100644 --- a/tests/test_algebra_onnx_doc.py +++ b/tests/test_algebra_onnx_doc.py @@ -46,6 +46,7 @@ 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 @@ -53,6 +54,7 @@ def test_doc_onnx(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_sklearn(self): try: rst = get_rst_doc_sklearn()