Skip to content

Commit 191491f

Browse files
committed
Skip failing TF test on GPU
1 parent 3801dcd commit 191491f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

keras/src/export/onnx_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ def get_model(type="sequential", input_shape=(10,), layer_list=None):
7777
),
7878
)
7979
@pytest.mark.skipif(testing.jax_uses_gpu(), reason="Leads to core dumps on CI")
80+
@pytest.mark.skipif(
81+
testing.tensorflow_uses_gpu(), reason="Leads to core dumps on CI"
82+
)
8083
class ExportONNXTest(testing.TestCase):
8184
@parameterized.named_parameters(
8285
named_product(

0 commit comments

Comments
 (0)