This is an automated email from the ASF dual-hosted git repository.
chamikara pushed a commit to branch transform_service_test_suite
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/transform_service_test_suite
by this push:
new 27abc069f8b Updates
27abc069f8b is described below
commit 27abc069f8bfa6146ad4fd02f1bc2206bcc38339
Author: Chamikara Jayalath <[email protected]>
AuthorDate: Mon Mar 4 11:37:11 2024 -0800
Updates
---
sdks/python/apache_beam/io/gcp/bigtableio_it_test.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/sdks/python/apache_beam/io/gcp/bigtableio_it_test.py
b/sdks/python/apache_beam/io/gcp/bigtableio_it_test.py
index 24f6fe2bfb0..75f42f2968e 100644
--- a/sdks/python/apache_beam/io/gcp/bigtableio_it_test.py
+++ b/sdks/python/apache_beam/io/gcp/bigtableio_it_test.py
@@ -59,10 +59,10 @@ def instance_prefix(instance):
@pytest.mark.uses_gcp_java_expansion_service
@pytest.mark.uses_transform_service
@unittest.skipIf(client is None, 'Bigtable dependencies are not installed')
[email protected](
- os.environ.get('EXPANSION_JARS'),
- "EXPANSION_JARS environment var is not provided, "
- "indicating that jars have not been built")
+# @unittest.skipUnless(
+# os.environ.get('EXPANSION_JARS'),
+# "EXPANSION_JARS environment var is not provided, "
+# "indicating that jars have not been built")
class TestReadFromBigTableIT(unittest.TestCase):
INSTANCE = "bt-read-tests"
TABLE_ID = "test-table"
@@ -150,10 +150,10 @@ class TestReadFromBigTableIT(unittest.TestCase):
@pytest.mark.uses_gcp_java_expansion_service
@pytest.mark.uses_transform_service
@unittest.skipIf(client is None, 'Bigtable dependencies are not installed')
[email protected](
- os.environ.get('EXPANSION_JARS'),
- "EXPANSION_JARS environment var is not provided, "
- "indicating that jars have not been built")
+# @unittest.skipUnless(
+# os.environ.get('EXPANSION_JARS'),
+# "EXPANSION_JARS environment var is not provided, "
+# "indicating that jars have not been built")
class TestWriteToBigtableXlangIT(unittest.TestCase):
# These are integration tests for the cross-language write transform.
INSTANCE = "bt-write-xlang"