Skip to content

Commit d6ea09a

Browse files
authored
Set CI - fail fast to false (#239)
* fail fast to false * disable ort tests * skip broken tests caused by tr main
1 parent 2195c7c commit d6ea09a

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
name: to-${{ matrix.torch }}-tr-${{ matrix.transformers }}-ci ${{ matrix.os }}-${{ matrix.python }}
1414
runs-on: ${{ matrix.os }}
1515
strategy:
16+
fail-fast: false
1617
matrix:
1718
os: [ubuntu-latest]
1819
python: ['3.10', '3.11', '3.12', '3.13']

_unittests/ut_torch_models/test_hghub_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
class TestHuggingFaceHubApi(ExtTestCase):
3030

31+
@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/242")
3132
@requires_transformers("4.50") # we limit to some versions of the CI
3233
@requires_torch("2.7")
3334
@ignore_errors(OSError) # connectivity issues

_unittests/ut_xrun_doc/test_check_ort_float16.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ def common_scatter(self, opset, providers, dtype, reduction, expected_names):
142142
tuple([("CUDAExecutionProvider", o) for o in en] for en in expected_names),
143143
)
144144

145+
@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
145146
@requires_cuda()
146147
@ignore_warnings(DeprecationWarning)
147148
@requires_onnxruntime("1.23")
@@ -185,6 +186,7 @@ def test_scatterels_cuda(self):
185186
expected[dtype, reduction],
186187
)
187188

189+
@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
188190
@requires_cuda()
189191
@ignore_warnings(DeprecationWarning)
190192
def test_scatternd_cuda(self):
@@ -223,6 +225,7 @@ def test_scatternd_cuda(self):
223225
expected[dtype, reduction],
224226
)
225227

228+
@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
226229
@ignore_warnings(DeprecationWarning)
227230
@requires_onnxruntime("1.23")
228231
def test_scatterels_cpu(self):
@@ -266,6 +269,7 @@ def test_scatterels_cpu(self):
266269
expected[dtype, reduction],
267270
)
268271

272+
@unittest.skip("https://github.com/sdpython/onnx-diagnostic/issues/240")
269273
@ignore_warnings(DeprecationWarning)
270274
@requires_onnxruntime("1.23")
271275
def test_scatternd_cpu(self):

0 commit comments

Comments
 (0)