Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/integration_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,10 @@ def test_empty_result(test_client: Client):
assert len(test_client.query("SELECT * FROM system.tables WHERE name = '_NOT_A THING'").result_rows) == 0


def test_temporary_tables(test_client: Client):
def test_temporary_tables(test_client: Client, test_config: TestConfig):
if test_config.cloud:
pytest.skip("Skipping temporary tables test in cloud env")

session_id = test_client.get_client_setting("session_id")
session_settings = {"session_id": session_id}
test_client.command("""
Expand Down