Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/test_bigtable/test_parallel_read_rows.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@
import tensorflow_io.python.ops.bigtable.bigtable_row_set as row_set
import tensorflow as tf
from tensorflow import test
import pytest
import sys


@pytest.mark.skipif(sys.platform == "darwin", reason="macOS fails now")
class BigtableParallelReadTest(test.TestCase):
def setUp(self):
self.emulator = BigtableEmulator()
Expand Down
3 changes: 3 additions & 0 deletions tests/test_bigtable/test_read_rows.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@
import tensorflow_io.python.ops.bigtable.bigtable_row_set as row_set
import tensorflow as tf
from tensorflow import test
import pytest
import sys


@pytest.mark.skipif(sys.platform == "darwin", reason="macOS fails now")
class BigtableReadTest(test.TestCase):
def setUp(self):
self.emulator = BigtableEmulator()
Expand Down
1 change: 0 additions & 1 deletion tests/test_bigtable/test_row_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
import tensorflow_io.python.ops.bigtable.bigtable_row_range as row_range
import tensorflow_io.python.ops.bigtable.bigtable_row_set as row_set
from tensorflow import test
import tensorflow as tf


class RowRangeTest(test.TestCase):
Expand Down
3 changes: 3 additions & 0 deletions tests/test_bigtable/test_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@
from google.auth.credentials import AnonymousCredentials
from google.cloud.bigtable import Client
import datetime
import pytest
import sys


@pytest.mark.skipif(sys.platform == "darwin", reason="macOS fails now")
class BigtableReadTest(test.TestCase):
def check_values(self, values, table, type_name, tf_dtype):
for i, r in enumerate(
Expand Down