Skip to content

Commit d2d3377

Browse files
authored
SNOW-1332387: fix RT test failures (#1925)
1 parent 2bb8d6a commit d2d3377

File tree

5 files changed

+1
-6
lines changed

5 files changed

+1
-6
lines changed

ci/test_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ else
3737
echo "[Info] Testing with ${PYTHON_VERSION}"
3838
SHORT_VERSION=$(python3.10 -c "print('${PYTHON_VERSION}'.replace('.', ''))")
3939
CONNECTOR_WHL=$(ls $CONNECTOR_DIR/dist/snowflake_connector_python*cp${SHORT_VERSION}*manylinux2014*.whl | sort -r | head -n 1)
40-
TEST_LIST=`echo py${PYTHON_VERSION/\./}-{extras,unit,integ,pandas,sso}-ci | sed 's/ /,/g'`
40+
TEST_LIST=`echo py${PYTHON_VERSION/\./}-{unit,integ,pandas,sso}-ci | sed 's/ /,/g'`
4141
TEST_ENVLIST=fix_lint,$TEST_LIST,py${PYTHON_VERSION/\./}-coverage
4242
echo "[Info] Running tox for ${TEST_ENVLIST}"
4343

test/integ/test_autocommit.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ def exe(cnx, sql):
167167
protocol=db_parameters["protocol"],
168168
schema=db_parameters["schema"],
169169
database=db_parameters["database"],
170-
warehouse=db_parameters["warehouse"],
171170
autocommit=False,
172171
) as cnx:
173172
exe(
@@ -187,7 +186,6 @@ def exe(cnx, sql):
187186
protocol=db_parameters["protocol"],
188187
schema=db_parameters["schema"],
189188
database=db_parameters["database"],
190-
warehouse=db_parameters["warehouse"],
191189
autocommit=True,
192190
) as cnx:
193191
_run_autocommit_on(cnx, db_parameters)

test/integ/test_converter_null.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ def test_converter_no_converter_to_python(db_parameters):
2727
port=db_parameters["port"],
2828
account=db_parameters["account"],
2929
database=db_parameters["database"],
30-
warehouse=db_parameters["warehouse"],
3130
schema=db_parameters["schema"],
3231
protocol=db_parameters["protocol"],
3332
timezone="UTC",

test/integ/test_cursor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,6 @@ def test_insert_timestamp_select(conn, db_parameters):
297297
account=db_parameters["account"],
298298
database=db_parameters["database"],
299299
schema=db_parameters["schema"],
300-
warehouse=db_parameters["warehouse"],
301300
protocol=db_parameters["protocol"],
302301
timezone="UTC",
303302
)

test/integ/test_transaction.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def test_connection_context_manager(request, db_parameters):
7878
"host": db_parameters["host"],
7979
"port": db_parameters["port"],
8080
"database": db_parameters["database"],
81-
"warehouse": db_parameters["warehouse"],
8281
"schema": db_parameters["schema"],
8382
"timezone": "UTC",
8483
}

0 commit comments

Comments
 (0)