Skip to content

Commit 1ee4457

Browse files
committed
skip test on windows/macOS
1 parent 342d9db commit 1ee4457

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/test_fs_plugins.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,20 @@
1616

1717
import os
1818
import re
19+
import sys
1920
import time
2021

2122
import pytest
2223
import tensorflow as tf
2324
import tensorflow_io as tfio # pylint: disable=unused-import
2425

26+
27+
pytestmark = pytest.mark.skipif(
28+
sys.platform in ("win32", "darwin"),
29+
reason="TODO emulator not setup properly on macOS/Windows yet",
30+
)
31+
32+
2533
S3_URI = "s3e"
2634
AZ_URI = "az"
2735
HDFS_URI = "hdfse"

0 commit comments

Comments
 (0)