Skip to content

Commit 2dc745a

Browse files
committed
Include latest python sqlogic changes
1 parent f43b54d commit 2dc745a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sqllogic/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
SQLLOGIC_TEST_CASE_NAME = "test_sqllogic"
1212
SQLLOGIC_TEST_PARAMETER = "test_script_path"
13-
DUCKDB_ROOT_DIR = (pathlib.Path(__file__).parent.parent / 'external' / 'duckdb').resolve()
13+
DUCKDB_ROOT_DIR = pathlib.Path(__file__).parent.joinpath("../../..").resolve()
1414

1515

1616
def pytest_addoption(parser: pytest.Parser):

sqllogic/skipped_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,6 @@
3737
'test/sql/tpcds/tpcds_sf0.test', # problems connected to auto installing tpcds from remote
3838
'test/sql/optimizer/plan/test_filter_pushdown_materialized_cte.test', # problems connected to auto installing tpcds from remote
3939
'test/sql/explain/test_explain_analyze.test', # unknown problem with changes in API
40+
'test/sql/pragma/profiling/test_profiling_all.test', # Because of logic related to enabling 'restart' statement capabilities, this will not measure the right statement
4041
]
4142
)

0 commit comments

Comments
 (0)