This is an automated email from the ASF dual-hosted git repository.
av pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new c1aa788fc57 IGNITE-28431 [ducktests] Stabilize Ducktests tox
environments by removing shared homedir usage (#12967)
c1aa788fc57 is described below
commit c1aa788fc57162dcda6b44f2a1a9349a22644181
Author: Maksim Davydov <[email protected]>
AuthorDate: Tue Apr 7 14:47:14 2026 +0300
IGNITE-28431 [ducktests] Stabilize Ducktests tox environments by removing
shared homedir usage (#12967)
---
modules/ducktests/tests/tox.ini | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/ducktests/tests/tox.ini b/modules/ducktests/tests/tox.ini
index e9c9e29d6b6..56d89ca0081 100644
--- a/modules/ducktests/tests/tox.ini
+++ b/modules/ducktests/tests/tox.ini
@@ -18,7 +18,7 @@ skipsdist = True
[testenv]
install_command = pip install --extra-index-url https://pypi.org/simple {opts}
{packages}
-envdir = {homedir}/.virtualenvs/ignite-ducktests-{envname}
+envdir = {toxworkdir}/.virtualenvs/ignite-ducktests-{envname}
deps =
-r ./docker/requirements-dev.txt
usedevelop = True
@@ -31,10 +31,10 @@ commands =
flake8
[testenv:py38]
-envdir = {homedir}/.virtualenvs/ignite-ducktests-py38
+envdir = {toxworkdir}/.virtualenvs/ignite-ducktests-py38
[testenv:py39]
-envdir = {homedir}/.virtualenvs/ignite-ducktests-py39
+envdir = {toxworkdir}/.virtualenvs/ignite-ducktests-py39
[BASIC]
min-public-methods=0