Skip to content
Merged
Prev Previous commit
Next Next commit
more disabling
  • Loading branch information
xadupre committed Nov 13, 2023
commit d3da504fa784652c47324987023a8780a0cd04a1
3 changes: 2 additions & 1 deletion _unittests/ut_ort/test_ort_tensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@


class TestOrtTensor(ExtTestCase):

@skipif_ci_windows("Unstable on Windows")
def test_eager_numpy_type_ort(self):
def impl(A):
Expand Down Expand Up @@ -71,6 +70,7 @@ def impl(A):
self.assertEqualArray(z, res.numpy())
self.assertEqual(res.numpy().dtype, np.float64)

@skipif_ci_windows("Unstable on Windows")
def test_eager_ort(self):
def impl(A):
print("A")
Expand Down Expand Up @@ -219,6 +219,7 @@ def test_astype0_w2(self):
got = ref.run(None, {"A": x})
self.assertEqualArray(z, got[0])

@skipif_ci_windows("Unstable on Windows")
def test_eager_ort_cast(self):
def impl(A):
return A.astype(DType("FLOAT"))
Expand Down