Skip to content

Commit d3607d4

Browse files
DEBUG make tests running
1 parent 090b4ef commit d3607d4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

test/integ/aio/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ async def aio_connection(db_parameters):
141141
warehouse=db_parameters["warehouse"],
142142
protocol=db_parameters["protocol"],
143143
timezone="UTC",
144+
role=db_parameters.get("role", None),
144145
)
145146
yield cnx
146147
await cnx.close()

test/integ/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ def init_test_schema(db_parameters) -> Generator[None, None, None]:
182182
database=ret["database"],
183183
account=ret["account"],
184184
protocol=ret["protocol"],
185+
role=ret.get("role", None),
185186
) as con:
186187
con.cursor().execute(f"CREATE SCHEMA IF NOT EXISTS {TEST_SCHEMA}")
187188
yield

0 commit comments

Comments
 (0)