Skip to content

Commit

Permalink
run duckdb
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Sep 5, 2024
1 parent 052a9cd commit 001138f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
integration-test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install
run: make install
- name: Run integration tests
run: make test-integration
run: PYTEST_ARGS="-k test_duckdb_url_import" make test-integration
- name: Show debug logs
if: ${{ failure() }}
run: docker compose -f dev/docker-compose.yml logs
3 changes: 2 additions & 1 deletion tests/integration/test_writes/test_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,8 @@ def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table) ->

import duckdb

duckdb.sql("INSTALL iceberg; LOAD iceberg;")
duckdb.sql("FORCE INSTALL iceberg;")
duckdb.sql("LOAD iceberg;")
result = duckdb.sql(
f"""
SELECT *
Expand Down

0 comments on commit 001138f

Please sign in to comment.