From b8245b36f18a255093a83ebbf5dce0613d461b86 Mon Sep 17 00:00:00 2001 From: Misha Kaletsky Date: Fri, 20 Sep 2024 11:20:10 -0400 Subject: [PATCH] undebug --- .github/workflows/main.yml | 4 ++-- packages/admin/test/autocomplete.test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ca02330a..9fa93273 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,7 +39,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: 3.x - name: Install python dependencies (for testing migra) run: | python -m pip install --upgrade pip @@ -47,7 +47,7 @@ jobs: pip install migra pip install psycopg2-binary migra --help | grep 'Generate a database migration' - migra EMPTY postgresql://postgres:postgres@localhost:5432/postgres --unsafe | echo 'migra exited with an error code - check output' + migra EMPTY postgresql://postgres:postgres@localhost:5432/postgres --unsafe || echo 'migra exited with an error code - check output' - uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} diff --git a/packages/admin/test/autocomplete.test.ts b/packages/admin/test/autocomplete.test.ts index bb3d94e3..87c11007 100644 --- a/packages/admin/test/autocomplete.test.ts +++ b/packages/admin/test/autocomplete.test.ts @@ -296,7 +296,7 @@ test('suggest table', async () => { test('suggest table w schema qualifier', async () => { // todo: improve this - expect(suggest('select * from public.pr|', {debug: true})).toMatchInlineSnapshot(`[]`) + expect(suggest('select * from public.pr|')).toMatchInlineSnapshot(`[]`) }) test('suggest tables w/ name clash', async () => {