From fd7d353c7a9ebe71d251a898de679b770e5c8102 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Thu, 14 Dec 2023 11:48:07 +0530 Subject: [PATCH] test: enable all tests for mysql & sqlite Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/setup/db.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/setup/db.ts b/tests/playwright/setup/db.ts index 4af47d92df..b43c664098 100644 --- a/tests/playwright/setup/db.ts +++ b/tests/playwright/setup/db.ts @@ -14,7 +14,7 @@ const isEE = () => process.env.EE === 'true'; // run all the tests for PG; disable some tests for mysql, sqlite to reduce CI time // -const enableQuickRun = () => (process.env.CI ? process.env.E2E_DB_TYPE : process.env.E2E_DEV_DB_TYPE) !== 'pg'; +const enableQuickRun = () => false; const pg_credentials = (context: NcContext) => ({ user: 'postgres',