Skip to content

Commit 8619457

Browse files
committed
skip setup on local testing mode
1 parent 19d5554 commit 8619457

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integ/conftest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -349,10 +349,10 @@ def session(
349349
full_ast_validation_listener = setup_full_ast_validation_mode(
350350
session, db_parameters, unparser_jar
351351
)
352-
353-
session.sql(
354-
"alter session set ENABLE_EXTRACTION_PUSHDOWN_EXTERNAL_PARQUET_FOR_COPY_PHASE_I='Track';"
355-
).collect()
352+
if not local_testing_mode:
353+
session.sql(
354+
"alter session set ENABLE_EXTRACTION_PUSHDOWN_EXTERNAL_PARQUET_FOR_COPY_PHASE_I='Track';"
355+
).collect()
356356

357357
try:
358358
yield session

0 commit comments

Comments
 (0)