Skip to content

Commit

Permalink
use mac
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinjqliu committed Sep 6, 2024
1 parent 39bb2ec commit 987ad6a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
lint-and-test:
runs-on: ubuntu-22.04
runs-on: macos-14
strategy:
matrix:
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
Expand Down
2 changes: 1 addition & 1 deletion .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: macos-14

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions tests/integration/test_writes/test_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,10 @@ def test_duckdb_url_import(warehouse: Path, arrow_table_with_null: pa.Table) ->

import duckdb

query = "SELECT * FROM duckdb_extensions() WHERE extension_name = 'iceberg'"
print(f"Before: {duckdb.sql(query)}")
duckdb.sql("INSTALL iceberg; LOAD iceberg;")
print(f"After: {duckdb.sql(query)}")
result = duckdb.sql(
f"""
SELECT *
Expand Down

0 comments on commit 987ad6a

Please sign in to comment.