From 340d9c34ffd6eba7d4fb591da8ce5c69d58a5151 Mon Sep 17 00:00:00 2001 From: mike12345567 Date: Tue, 10 Dec 2024 17:30:54 +0000 Subject: [PATCH] Linting and CI update. --- .github/workflows/budibase_ci.yml | 2 +- packages/server/src/integrations/tests/utils/index.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/budibase_ci.yml b/.github/workflows/budibase_ci.yml index 2151e1e342..5eea636b5d 100644 --- a/.github/workflows/budibase_ci.yml +++ b/.github/workflows/budibase_ci.yml @@ -155,7 +155,7 @@ jobs: strategy: matrix: datasource: - [mssql, mysql, postgres, mongodb, mariadb, oracle, sqs, none] + [mssql, mysql, postgres, postgres_legacy, mongodb, mariadb, oracle, sqs, none] steps: - name: Checkout repo uses: actions/checkout@v4 diff --git a/packages/server/src/integrations/tests/utils/index.ts b/packages/server/src/integrations/tests/utils/index.ts index 9f443c3988..00aff70b13 100644 --- a/packages/server/src/integrations/tests/utils/index.ts +++ b/packages/server/src/integrations/tests/utils/index.ts @@ -9,7 +9,6 @@ import * as oracle from "./oracle" import { testContainerUtils } from "@budibase/backend-core/tests" import { Knex } from "knex" import TestConfiguration from "../../../tests/utilities/TestConfiguration" -import { getLegacyDatasource } from "./postgres" export type DatasourceProvider = () => Promise