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 8dcd9213611 IGNITE-27908 [ducktests] Use python3.9 for ducktest
checkstyle (#12764)
8dcd9213611 is described below
commit 8dcd921361182133a746247421017f471d17977b
Author: Maksim Davydov <[email protected]>
AuthorDate: Thu Feb 19 19:36:34 2026 +0300
IGNITE-27908 [ducktests] Use python3.9 for ducktest checkstyle (#12764)
---
.github/workflows/commit-check.yml | 2 +-
modules/ducktests/tests/tox.ini | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/commit-check.yml
b/.github/workflows/commit-check.yml
index 6fa46cfbc89..3a83c02516e 100644
--- a/.github/workflows/commit-check.yml
+++ b/.github/workflows/commit-check.yml
@@ -97,7 +97,7 @@ jobs:
cfg:
- { python: "3.8", toxenv: "py38" }
- { python: "3.9", toxenv: "py39" }
- - { python: "3.8", toxenv: "codestyle" }
+ - { python: "3.9", toxenv: "codestyle" }
steps:
- uses: actions/checkout@v4
with:
diff --git a/modules/ducktests/tests/tox.ini b/modules/ducktests/tests/tox.ini
index 94e45080ab0..e9c9e29d6b6 100644
--- a/modules/ducktests/tests/tox.ini
+++ b/modules/ducktests/tests/tox.ini
@@ -17,6 +17,7 @@ envlist = codestyle, py38, py39
skipsdist = True
[testenv]
+install_command = pip install --extra-index-url https://pypi.org/simple {opts}
{packages}
envdir = {homedir}/.virtualenvs/ignite-ducktests-{envname}
deps =
-r ./docker/requirements-dev.txt
@@ -25,7 +26,7 @@ commands =
pytest {env:PYTESTARGS:} {posargs}
[testenv:codestyle]
-basepython = python3.8
+basepython = python3
commands =
flake8