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
The following commit(s) were added to refs/heads/ignite-27373 by this push:
new 2278f47f3de IGNITE-27373 Fixes
2278f47f3de is described below
commit 2278f47f3de753c3c95eaf699005b8867730caac
Author: Igor Sapego <[email protected]>
AuthorDate: Fri Feb 27 03:50:56 2026 +0100
IGNITE-27373 Fixes
---
modules/platforms/python/dbapi/tox.ini | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/modules/platforms/python/dbapi/tox.ini
b/modules/platforms/python/dbapi/tox.ini
index c1d29736d05..7a1edba587d 100644
--- a/modules/platforms/python/dbapi/tox.ini
+++ b/modules/platforms/python/dbapi/tox.ini
@@ -26,3 +26,8 @@ deps =
recreate = True
commands = pytest -s --teamcity tests
+[testenv:py314t]
+set_env = PYTHON_GIL=0
+commands =
+ python -c "import sys; assert not sys._is_gil_enabled(), 'GIL is still
enabled!'"
+ pytest {posargs}