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

Commit 987e727

Browse files
authored
chore: Skipping KMS database and backup sample tests (#2512)
1 parent 532ba7c commit 987e727

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

samples/system-test/spanner.test.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@ describe('Autogenerated Admin Clients', () => {
15461546
it('should restore database from a backup', async function () {
15471547
// Restoring a backup can be a slow operation so the test may timeout and
15481548
// we'll have to retry.
1549-
this.retries(5);
1549+
this.retries(3);
15501550
// Delay the start of the test, if this is a retry.
15511551
await delay(this.test, async () => {
15521552
await cleanupDatabase(INSTANCE_ID, RESTORE_DATABASE_ID);
@@ -1569,7 +1569,7 @@ describe('Autogenerated Admin Clients', () => {
15691569
it('should restore database from a backup using an encryption key', async function () {
15701570
// Restoring a backup can be a slow operation so the test may timeout and
15711571
// we'll have to retry.
1572-
this.retries(5);
1572+
this.retries(3);
15731573
// Delay the start of the test, if this is a retry.
15741574
await delay(this.test, async () => {
15751575
await cleanupDatabase(INSTANCE_ID, ENCRYPTED_RESTORE_DATABASE_ID);
@@ -2433,7 +2433,8 @@ describe('Autogenerated Admin Clients', () => {
24332433
});
24342434
});
24352435

2436-
describe('encrypted database and backups with multiple KMS keys', () => {
2436+
// Skipping KMS test suite as tests are getting timed out frequently.
2437+
describe.skip('encrypted database and backups with multiple KMS keys', () => {
24372438
const MR_CMEK_DB = `test-mr-${CURRENT_TIME}-db`;
24382439
const MR_CMEK_BACKUP = `test-mr-${CURRENT_TIME}-backup`;
24392440
const MR_CMEK_COPIED = `test-mr-${CURRENT_TIME}-copied`;

0 commit comments

Comments
 (0)