Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
name: to-${{ matrix.torch }}-tr-${{ matrix.transformers }}-ci ${{ matrix.os }}-${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['3.10', '3.11', '3.12', '3.13']
Expand Down
1 change: 1 addition & 0 deletions _unittests/ut_torch_models/test_hghub_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

class TestHuggingFaceHubApi(ExtTestCase):

@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/242")
@requires_transformers("4.50") # we limit to some versions of the CI
@requires_torch("2.7")
@ignore_errors(OSError) # connectivity issues
Expand Down
4 changes: 4 additions & 0 deletions _unittests/ut_xrun_doc/test_check_ort_float16.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def common_scatter(self, opset, providers, dtype, reduction, expected_names):
short_list = [(a, b) for a, b in exe_providers if a is not None and b is not None]
self.assertEqual(short_list, [("CUDAExecutionProvider", o) for o in expected_names])

@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
@requires_cuda()
@ignore_warnings(DeprecationWarning)
def test_scatterels_cuda(self):
Expand Down Expand Up @@ -156,6 +157,7 @@ def test_scatterels_cuda(self):
expected[dtype, reduction],
)

@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
@requires_cuda()
@ignore_warnings(DeprecationWarning)
def test_scatternd_cuda(self):
Expand Down Expand Up @@ -184,6 +186,7 @@ def test_scatternd_cuda(self):
expected[dtype, reduction],
)

@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
@ignore_warnings(DeprecationWarning)
def test_scatterels_cpu(self):
default_value = [
Expand Down Expand Up @@ -217,6 +220,7 @@ def test_scatterels_cpu(self):
expected[dtype, reduction],
)

@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
@ignore_warnings(DeprecationWarning)
def test_scatternd_cpu(self):
default_value = [
Expand Down
Loading