Skip to content

Commit 28dbf0b

Browse files
create dedicated client for temp table test (#601)
* create dedicated client for temp table test * skip test for now
1 parent 29dfd78 commit 28dbf0b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/integration_tests/test_client.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,10 @@ def test_empty_result(test_client: Client):
215215
assert len(test_client.query("SELECT * FROM system.tables WHERE name = '_NOT_A THING'").result_rows) == 0
216216

217217

218-
def test_temporary_tables(test_client: Client):
218+
def test_temporary_tables(test_client: Client, test_config: TestConfig):
219+
if test_config.cloud:
220+
pytest.skip("Skipping temporary tables test in cloud env")
221+
219222
session_id = test_client.get_client_setting("session_id")
220223
session_settings = {"session_id": session_id}
221224
test_client.command("""

0 commit comments

Comments
 (0)