This is an automated email from the ASF dual-hosted git repository.
bhulette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 10d9594 [BEAM-13222] Skip spanner integration tests (#15942)
10d9594 is described below
commit 10d95949ac51ba0217c8873fc11033616f41d5bc
Author: Brian Hulette <[email protected]>
AuthorDate: Wed Nov 10 19:40:34 2021 -0800
[BEAM-13222] Skip spanner integration tests (#15942)
---
.../src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerReadIT.java | 2 ++
.../test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerWriteIT.java | 2 ++
sdks/python/apache_beam/io/gcp/experimental/spannerio_read_it_test.py | 1 +
sdks/python/apache_beam/io/gcp/experimental/spannerio_write_it_test.py | 1 +
sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py | 1 +
5 files changed, 7 insertions(+)
diff --git
a/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerReadIT.java
b/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerReadIT.java
index cc20781..30ee70b 100644
---
a/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerReadIT.java
+++
b/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerReadIT.java
@@ -47,12 +47,14 @@ import org.apache.beam.sdk.values.TypeDescriptor;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.junit.After;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** End-to-end test of Cloud Spanner Source. */
+@Ignore("BEAM-13222")
@RunWith(JUnit4.class)
public class SpannerReadIT {
diff --git
a/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerWriteIT.java
b/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerWriteIT.java
index 21f2489..100780c 100644
---
a/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerWriteIT.java
+++
b/sdks/java/io/google-cloud-platform/src/test/java/org/apache/beam/sdk/io/gcp/spanner/SpannerWriteIT.java
@@ -51,6 +51,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
import org.hamcrest.TypeSafeMatcher;
import org.junit.After;
import org.junit.Before;
+import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
@@ -58,6 +59,7 @@ import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/** End-to-end test of Cloud Spanner Sink. */
+@Ignore("BEAM-13222")
@RunWith(JUnit4.class)
public class SpannerWriteIT {
diff --git
a/sdks/python/apache_beam/io/gcp/experimental/spannerio_read_it_test.py
b/sdks/python/apache_beam/io/gcp/experimental/spannerio_read_it_test.py
index bce7a66..f0b00c1 100644
--- a/sdks/python/apache_beam/io/gcp/experimental/spannerio_read_it_test.py
+++ b/sdks/python/apache_beam/io/gcp/experimental/spannerio_read_it_test.py
@@ -49,6 +49,7 @@ _LOGGER = logging.getLogger(__name__)
_TEST_INSTANCE_ID = 'beam-test'
[email protected]("BEAM-13222")
@unittest.skipIf(spanner is None, 'GCP dependencies are not installed.')
class SpannerReadIntegrationTest(unittest.TestCase):
TEST_DATABASE = None
diff --git
a/sdks/python/apache_beam/io/gcp/experimental/spannerio_write_it_test.py
b/sdks/python/apache_beam/io/gcp/experimental/spannerio_write_it_test.py
index e2f46d2..29b5d82 100644
--- a/sdks/python/apache_beam/io/gcp/experimental/spannerio_write_it_test.py
+++ b/sdks/python/apache_beam/io/gcp/experimental/spannerio_write_it_test.py
@@ -47,6 +47,7 @@ _LOGGER = logging.getLogger(__name__)
_TEST_INSTANCE_ID = 'beam-test'
[email protected]("BEAM-13222")
@unittest.skipIf(spanner is None, 'GCP dependencies are not installed.')
class SpannerWriteIntegrationTest(unittest.TestCase):
TEST_DATABASE = None
diff --git a/sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py
b/sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py
index 5d70105..f8442f9 100644
--- a/sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py
+++ b/sdks/python/apache_beam/io/gcp/tests/xlang_spannerio_it_test.py
@@ -66,6 +66,7 @@ class SpannerPartTestRow(NamedTuple):
f_int64: Optional[int]
[email protected]("BEAM-13222")
@unittest.skipIf(spanner is None, 'GCP dependencies are not installed.')
@unittest.skipIf(
DockerContainer is None, 'testcontainers package is not installed.')