This is an automated email from the ASF dual-hosted git repository. isapego pushed a commit to branch ignite-27373 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit 9fc06433af014fcb43bbe4ca34b10ef7eaeb41bb Author: Igor Sapego <[email protected]> AuthorDate: Fri Feb 27 03:39:26 2026 +0100 IGNITE-27373 Fixes --- modules/platforms/python/dbapi/requirements/install.txt | 2 -- modules/platforms/python/dbapi/requirements/tests.txt | 6 ++---- modules/platforms/python/dbapi/tests/test_concurrency.py | 5 ++--- 3 files changed, 4 insertions(+), 9 deletions(-) diff --git a/modules/platforms/python/dbapi/requirements/install.txt b/modules/platforms/python/dbapi/requirements/install.txt index 5f3e1531bd8..5c00eb37a5e 100644 --- a/modules/platforms/python/dbapi/requirements/install.txt +++ b/modules/platforms/python/dbapi/requirements/install.txt @@ -1,3 +1 @@ # these pip packages are necessary for the pyignite_dbapi to run - -attrs==23.1.0 \ No newline at end of file diff --git a/modules/platforms/python/dbapi/requirements/tests.txt b/modules/platforms/python/dbapi/requirements/tests.txt index ad48df9e321..6cd09643561 100644 --- a/modules/platforms/python/dbapi/requirements/tests.txt +++ b/modules/platforms/python/dbapi/requirements/tests.txt @@ -1,8 +1,6 @@ # these packages are used for testing -pytest==6.2.5 -pytest-cov==2.11.1 -teamcity-messages==1.28 +pytest==8.2.2 +teamcity-messages==1.33 psutil==5.8.0 -flake8==3.8.4 dbapi-compliance==1.15.0 \ No newline at end of file diff --git a/modules/platforms/python/dbapi/tests/test_concurrency.py b/modules/platforms/python/dbapi/tests/test_concurrency.py index e5055288354..bdf63536ba4 100644 --- a/modules/platforms/python/dbapi/tests/test_concurrency.py +++ b/modules/platforms/python/dbapi/tests/test_concurrency.py @@ -15,7 +15,6 @@ import threading import time -from builtins import ExceptionGroup import pytest @@ -61,7 +60,7 @@ def run_threads(fn, n=NUM_THREADS, *args): t.join() if errors: - raise ExceptionGroup("thread errors", errors) + raise errors[0] def test_concurrent_module_import(module_level_threadsafety): @@ -160,7 +159,7 @@ def test_concurrent_fetchall_result_integrity(table, connection, connection_leve run_threads(task) if errors: - raise ExceptionGroup("result integrity errors", errors) + raise errors[0] def test_cursor_description_thread_safety(table, connection, connection_level_threadsafety):
