Skip to content

Commit 8dcd921

Browse files
authored
IGNITE-27908 [ducktests] Use python3.9 for ducktest checkstyle (#12764)
1 parent 6313ea0 commit 8dcd921

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/commit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
cfg:
9898
- { python: "3.8", toxenv: "py38" }
9999
- { python: "3.9", toxenv: "py39" }
100-
- { python: "3.8", toxenv: "codestyle" }
100+
- { python: "3.9", toxenv: "codestyle" }
101101
steps:
102102
- uses: actions/checkout@v4
103103
with:

modules/ducktests/tests/tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ envlist = codestyle, py38, py39
1717
skipsdist = True
1818

1919
[testenv]
20+
install_command = pip install --extra-index-url https://pypi.org/simple {opts} {packages}
2021
envdir = {homedir}/.virtualenvs/ignite-ducktests-{envname}
2122
deps =
2223
-r ./docker/requirements-dev.txt
@@ -25,7 +26,7 @@ commands =
2526
pytest {env:PYTESTARGS:} {posargs}
2627

2728
[testenv:codestyle]
28-
basepython = python3.8
29+
basepython = python3
2930
commands =
3031
flake8
3132

0 commit comments

Comments
 (0)