From 9448a1622b7efd39d8e812df54b8e6da7f17216e Mon Sep 17 00:00:00 2001 From: AndriiSherman Date: Tue, 19 Mar 2024 18:17:13 +0200 Subject: [PATCH] Fix pipeline xata tests --- .github/workflows/release-latest.yaml | 2 ++ integration-tests/tests/xata-http.test.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-latest.yaml b/.github/workflows/release-latest.yaml index 5801eea3c..4c410faee 100644 --- a/.github/workflows/release-latest.yaml +++ b/.github/workflows/release-latest.yaml @@ -117,6 +117,8 @@ jobs: MYSQL_CONNECTION_STRING: mysql://root:root@localhost:3306/drizzle PLANETSCALE_CONNECTION_STRING: ${{ secrets.PLANETSCALE_CONNECTION_STRING }} NEON_CONNECTION_STRING: ${{ secrets.NEON_CONNECTION_STRING }} + XATA_API_KEY: ${{ secrets.XATA_API_KEY }} + XATA_BRANCH: ${{ secrets.XATA_BRANCH }} LIBSQL_URL: file:local.db run: | if [[ "${{ matrix.package }}" == "drizzle-orm" ]]; then diff --git a/integration-tests/tests/xata-http.test.ts b/integration-tests/tests/xata-http.test.ts index a30cb8cab..da2e3f1bd 100644 --- a/integration-tests/tests/xata-http.test.ts +++ b/integration-tests/tests/xata-http.test.ts @@ -2322,7 +2322,7 @@ test('insert undefined', async () => { await db.execute(sql`drop table ${users}`); }); -test.only('update undefined', async () => { +test('update undefined', async () => { const users = pgTable('users', { id: serial('id').primaryKey(), name: text('name'),