Skip to content

Commit 1a20b32

Browse files
NO-SNOW: Remove test_client_failover_connection_url
1 parent aa9526b commit 1a20b32

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

test/integ/aio_it/test_connection_async.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,16 +1010,6 @@ async def test_client_prefetch_threads_setting(conn_cnx):
10101010
assert conn.client_prefetch_threads == new_thread_count
10111011

10121012

1013-
@pytest.mark.skip(reason="Test stopped working after account setup change")
1014-
@pytest.mark.external
1015-
async def test_client_failover_connection_url(conn_cnx):
1016-
async with conn_cnx("client_failover") as conn:
1017-
async with conn.cursor() as cur:
1018-
assert await (await cur.execute("select 1;")).fetchall() == [
1019-
(1,),
1020-
]
1021-
1022-
10231013
async def test_connection_gc(conn_cnx):
10241014
"""This test makes sure that a heartbeat thread doesn't prevent garbage collection of SnowflakeConnection."""
10251015
conn = await conn_cnx(client_session_keep_alive=True).__aenter__()

test/integ/test_connection.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1107,16 +1107,6 @@ def test_ocsp_and_rest_pool_isolation(conn_cnx, disable_request_pooling):
11071107
assert rest_sm_1.sessions_map[host] is not rest_sm_2.sessions_map[host]
11081108

11091109

1110-
@pytest.mark.xfail(reason="Test stopped working after account setup change")
1111-
@pytest.mark.external
1112-
def test_client_failover_connection_url(conn_cnx):
1113-
with conn_cnx("client_failover") as conn:
1114-
with conn.cursor() as cur:
1115-
assert cur.execute("select 1;").fetchall() == [
1116-
(1,),
1117-
]
1118-
1119-
11201110
def test_connection_gc(conn_cnx):
11211111
"""This test makes sure that a heartbeat thread doesn't prevent garbage collection of SnowflakeConnection."""
11221112
conn = conn_cnx(client_session_keep_alive=True).__enter__()

0 commit comments

Comments
 (0)