Skip to content

Commit

Permalink
xfail problematic numerial difference test
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyRoseman committed Jun 5, 2023
1 parent acd1a6e commit f85f4fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions coremltools/test/neural_network/test_tf_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import unittest

import numpy as np
import pytest

import coremltools.models.datatypes as datatypes
from coremltools import ComputeUnit
Expand Down Expand Up @@ -390,6 +391,9 @@ def test_resize_bilinear_cpu_only(self):

@unittest.skipUnless(_macos_version() >= (10, 14), "Only supported on MacOS 10.14+")
def test_crop_resize(self, cpu_only=False):
if _macos_version()[0] == 12:
pytest.xfail("rdar://110274216")

def get_coreml_model_crop_resize(params):
eval = True
mlmodel = None
Expand Down

0 comments on commit f85f4fa

Please sign in to comment.