Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit 868adf9

Browse files
ci(spanner): Skip failing Directpath tests due to missing trailers
1 parent d79855a commit 868adf9

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

google-cloud-spanner/src/test/java/com/google/cloud/spanner/ITTransactionRetryTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public class ITTransactionRetryTest {
3636
@Test
3737
public void TestRetryInfo() {
3838
assumeFalse("emulator does not support parallel transaction", isUsingEmulator());
39+
// TODO(sakthivelmani) - Re-enable once b/422916293 is resolved
40+
assumeFalse(
41+
"Skipping the test due to a known bug b/422916293",
42+
env.getTestHelper().getOptions().isEnableDirectAccess());
3943

4044
// Creating a database with the table which contains INT64 columns
4145
Database db =

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/it/ITRetryDmlAsPartitionedDmlTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ public static void setupTestData() {
8686

8787
@Test
8888
public void testDmlFailsIfMutationLimitExceeded() {
89+
// TODO(sakthivelmani) - Re-enable once b/422916293 is resolved
90+
assumeFalse(
91+
"Skipping the test due to a known bug b/422916293",
92+
env.getTestHelper().getOptions().isEnableDirectAccess());
8993
try (Connection connection = createConnection()) {
9094
connection.setAutocommit(true);
9195
assertThrows(
@@ -138,6 +142,10 @@ public void retryDmlAsPartitionedDmlFinished(
138142

139143
@Test
140144
public void testRetryDmlAsPartitionedDml_failsForLargeInserts() throws Exception {
145+
// TODO(sakthivelmani) - Re-enable once b/422916293 is resolved
146+
assumeFalse(
147+
"Skipping the test due to a known bug b/422916293",
148+
env.getTestHelper().getOptions().isEnableDirectAccess());
141149
try (Connection connection = createConnection()) {
142150
connection.setAutocommit(true);
143151
connection.setAutocommitDmlMode(

0 commit comments

Comments
 (0)