Skip to content

Commit 920c64f

Browse files
committed
Update
[ghstack-poisoned]
1 parent b55594f commit 920c64f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)