Skip to content

Commit

Permalink
undebug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkal committed Sep 20, 2024
1 parent 04dec37 commit b8245b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ 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
pip install setuptools
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 }}
Expand Down
2 changes: 1 addition & 1 deletion packages/admin/test/autocomplete.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit b8245b3

Please sign in to comment.