From c7ab69d46df55fe66ed8e88612ce0c776427100f Mon Sep 17 00:00:00 2001 From: Kim Santiago <31145923+kisantia@users.noreply.github.com> Date: Fri, 23 Oct 2020 11:22:51 -0700 Subject: [PATCH] mark dacpac and schema compare tests as unstable (#13059) --- extensions/integration-tests/src/test/dacpac.test.ts | 2 +- extensions/integration-tests/src/test/schemaCompare.test.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/integration-tests/src/test/dacpac.test.ts b/extensions/integration-tests/src/test/dacpac.test.ts index 76ebce5dcd..db9f9afda1 100644 --- a/extensions/integration-tests/src/test/dacpac.test.ts +++ b/extensions/integration-tests/src/test/dacpac.test.ts @@ -23,7 +23,7 @@ suite('Dacpac integration test suite', () => { console.log(`Start dacpac tests`); }); - test('Deploy and extract dacpac', async function () { + test('Deploy and extract dacpac @UNSTABLE@', async function () { const server = await getStandaloneServer(); await utils.connectToServer(server); diff --git a/extensions/integration-tests/src/test/schemaCompare.test.ts b/extensions/integration-tests/src/test/schemaCompare.test.ts index 5cb52d8dc8..e3fc57e531 100644 --- a/extensions/integration-tests/src/test/schemaCompare.test.ts +++ b/extensions/integration-tests/src/test/schemaCompare.test.ts @@ -39,7 +39,7 @@ suite('Schema compare integration test suite', () => { dacfxService = ((await vscode.extensions.getExtension(mssql.extension.name).activate() as mssql.IExtension)).dacFx; console.log(`Start schema compare tests`); }); - test('Schema compare dacpac to dacpac comparison and scmp', async function () { + test('Schema compare dacpac to dacpac comparison and scmp @UNSTABLE@', async function () { assert(schemaCompareService, 'Schema Compare Service Provider is not available'); const now = new Date(); const operationId = 'testOperationId_' + now.getTime().toString(); @@ -160,7 +160,7 @@ suite('Schema compare integration test suite', () => { await utils.tryDeleteDB(server, targetDB, ownerUri); } }); - test('Schema compare dacpac to database comparison, script generation, and scmp', async function () { + test('Schema compare dacpac to database comparison, script generation, and scmp @UNSTABLE@', async function () { let server = await getStandaloneServer(); await utils.connectToServer(server, SERVER_CONNECTION_TIMEOUT);