This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 32f0661d315 IGNITE-26687 DB API: Mute some tests until heartbeats
implemented (#6854)
32f0661d315 is described below
commit 32f0661d315cda19d75dba0d66226e568e6ae1c4
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Oct 28 14:14:45 2025 +0400
IGNITE-26687 DB API: Mute some tests until heartbeats implemented (#6854)
---
modules/platforms/python/tests/test_executemany.py | 3 ++-
modules/platforms/python/tests/test_ssl.py | 2 ++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/modules/platforms/python/tests/test_executemany.py
b/modules/platforms/python/tests/test_executemany.py
index 4c35f94f481..fb73c861072 100644
--- a/modules/platforms/python/tests/test_executemany.py
+++ b/modules/platforms/python/tests/test_executemany.py
@@ -15,7 +15,8 @@
import pytest
[email protected]("batch_size", [1, 2, 10, 300])
+# TODO: IGNITE-26358: Enable heartbeats in tests and add variant with
batch_size 300 and 2000 once heartbeats are implemented
[email protected]("batch_size", [1, 2, 10])
def test_executemany_success(table_name, cursor, drop_table_cleanup,
batch_size):
test_data = [(i, f'data_{i}') for i in range(batch_size)]
diff --git a/modules/platforms/python/tests/test_ssl.py
b/modules/platforms/python/tests/test_ssl.py
index 0ff25a7829d..aa0907e5fd5 100644
--- a/modules/platforms/python/tests/test_ssl.py
+++ b/modules/platforms/python/tests/test_ssl.py
@@ -98,6 +98,8 @@ def test_connection_non_existing_cert():
assert err.match('(No such file or directory)|(no such file)')
+# TODO: IGNITE-26358: Enable heartbeats in tests re-enable this test
[email protected](reason="Flaky while there are no heartbeats")
@pytest.mark.parametrize("address", [server_addresses_ssl_basic,
server_addresses_ssl_client_auth])
def test_fetch_table_several_pages(table_name, address, drop_table_cleanup):
ssl_cfg = create_ssl_param(True, 'client.pem', 'client.pem', 'ca.pem')