Skip to content

Commit 385a810

Browse files
authored
IGNITE-23460 [ducktests] Use python 3.8 and 3.9 in the commit-check github action (#11785)
1 parent a373291 commit 385a810

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.github/workflows/commit-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ jobs:
9595
fail-fast: false
9696
matrix:
9797
cfg:
98-
- { python: "3.7", toxenv: "py37" }
9998
- { python: "3.8", toxenv: "py38" }
100-
- { python: "3.8", toxenv: "codestyle" }
99+
- { python: "3.9", toxenv: "py39" }
100+
- { python: "3.9", toxenv: "codestyle" }
101101
steps:
102102
- uses: actions/checkout@v4
103103
with:

modules/ducktests/tests/tox.ini

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
[tox]
16-
envlist = codestyle, py37, py38
16+
envlist = codestyle, py38, py39
1717
skipsdist = True
1818

1919
[testenv]
@@ -25,19 +25,16 @@ commands =
2525
pytest {env:PYTESTARGS:} {posargs}
2626

2727
[testenv:codestyle]
28-
basepython = python3.8
28+
basepython = python3.9
2929
commands =
3030
flake8
3131

32-
[testenv:py36]
33-
envdir = {homedir}/.virtualenvs/ignite-ducktests-py36
34-
35-
[testenv:py37]
36-
envdir = {homedir}/.virtualenvs/ignite-ducktests-py37
37-
3832
[testenv:py38]
3933
envdir = {homedir}/.virtualenvs/ignite-ducktests-py38
4034

35+
[testenv:py39]
36+
envdir = {homedir}/.virtualenvs/ignite-ducktests-py39
37+
4138
[BASIC]
4239
min-public-methods=0
4340
good-names=i, j, k, x, y, ex, pk, tx

0 commit comments

Comments
 (0)