Skip to content

Commit

Permalink
Properly enable OOC-processing for DuckDB
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait committed Apr 24, 2024
1 parent e5624ba commit 603f060
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tpch/test_duckdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


@pytest.fixture
def connection(local, restart):
def connection(local, restart, tmp_path):
def _():
con = duckdb.connect()

Expand All @@ -20,6 +20,8 @@ def _():
con.load_extension("httpfs")
con.sql(
f"""
SET temp_directory='{tmp_path}';
SET s3_region='us-east-2';
SET s3_access_key_id='{creds.access_key}';
SET s3_secret_access_key='{creds.secret_key}';
Expand Down

0 comments on commit 603f060

Please sign in to comment.