Skip to content

Commit

Permalink
Fix pipeline xata tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriiSherman committed Mar 19, 2024
1 parent c9a0caa commit 9448a16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/release-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/tests/xata-http.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'),
Expand Down

0 comments on commit 9448a16

Please sign in to comment.