We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b55594f commit 920c64fCopy full SHA for 920c64f
backends/apple/coreml/test/__init__.py
@@ -0,0 +1,17 @@
1
+# Copyright (c) Meta Platforms, Inc. and affiliates.
2
+# All rights reserved.
3
+#
4
+# This source code is licensed under the BSD-style license found in the
5
+# LICENSE file in the root directory of this source tree.
6
+
7
+import sys
8
9
+try:
10
+ import pytest
11
12
+ # Skip on Windows
13
+ if sys.platform == "win32":
14
+ pytest.skip("Core ML is not available on Windows.", allow_module_level=True)
15
16
+except ImportError:
17
+ pass
0 commit comments