Skip to content

Commit dde46a6

Browse files
committed
linting conftest
1 parent 18233e1 commit dde46a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/integ/conftest.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@
4141

4242
logger = getLogger(__name__)
4343

44+
4445
def _get_worker_specific_schema():
4546
"""Generate worker-specific schema name for parallel test execution."""
4647
base_uuid = str(uuid.uuid4()).replace("-", "_")
47-
48+
4849
# Check if running in pytest-xdist parallel mode
4950
worker_id = os.getenv("PYTEST_XDIST_WORKER")
5051
if worker_id:
@@ -61,8 +62,10 @@ def _get_worker_specific_schema():
6162
else:
6263
return f"python_connector_tests_{base_uuid}"
6364

65+
6466
TEST_SCHEMA = _get_worker_specific_schema()
6567

68+
6669
if TEST_USING_VENDORED_ARROW:
6770
snowflake.connector.cursor.NANOARR_USAGE = (
6871
snowflake.connector.cursor.NanoarrowUsage.DISABLE_NANOARROW

0 commit comments

Comments
 (0)