Skip to content

Commit 32f0661

Browse files
authored
IGNITE-26687 DB API: Mute some tests until heartbeats implemented (#6854)
1 parent 708849c commit 32f0661

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

modules/platforms/python/tests/test_executemany.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
import pytest
1616

1717

18-
@pytest.mark.parametrize("batch_size", [1, 2, 10, 300])
18+
# TODO: IGNITE-26358: Enable heartbeats in tests and add variant with batch_size 300 and 2000 once heartbeats are implemented
19+
@pytest.mark.parametrize("batch_size", [1, 2, 10])
1920
def test_executemany_success(table_name, cursor, drop_table_cleanup, batch_size):
2021
test_data = [(i, f'data_{i}') for i in range(batch_size)]
2122

modules/platforms/python/tests/test_ssl.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ def test_connection_non_existing_cert():
9898
assert err.match('(No such file or directory)|(no such file)')
9999

100100

101+
# TODO: IGNITE-26358: Enable heartbeats in tests re-enable this test
102+
@pytest.mark.skip(reason="Flaky while there are no heartbeats")
101103
@pytest.mark.parametrize("address", [server_addresses_ssl_basic, server_addresses_ssl_client_auth])
102104
def test_fetch_table_several_pages(table_name, address, drop_table_cleanup):
103105
ssl_cfg = create_ssl_param(True, 'client.pem', 'client.pem', 'ca.pem')

0 commit comments

Comments
 (0)