Skip to content

Commit aa1d4ba

Browse files
committed
use ubuntu
1 parent 39bb2ec commit aa1d4ba

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/python-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ concurrency:
3131

3232
jobs:
3333
integration-test:
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-22.04
3535

3636
steps:
3737
- uses: actions/checkout@v4

tests/integration/test_writes/test_writes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,10 @@ def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table) ->
649649

650650
import duckdb
651651

652+
query = "SELECT * FROM duckdb_extensions() WHERE extension_name = 'iceberg'"
653+
print(f"Before: {duckdb.sql(query)}")
652654
duckdb.sql("INSTALL iceberg; LOAD iceberg;")
655+
print(f"After: {duckdb.sql(query)}")
653656
result = duckdb.sql(
654657
f"""
655658
SELECT *

0 commit comments

Comments
 (0)