Skip to content

Commit

Permalink
IGNITE-23460 [ducktests] Use python 3.8 and 3.9 in the commit-check g…
Browse files Browse the repository at this point in the history
…ithub action (#11785)
  • Loading branch information
skorotkov authored Dec 28, 2024
1 parent a373291 commit 385a810
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ jobs:
fail-fast: false
matrix:
cfg:
- { python: "3.7", toxenv: "py37" }
- { python: "3.8", toxenv: "py38" }
- { python: "3.8", toxenv: "codestyle" }
- { python: "3.9", toxenv: "py39" }
- { python: "3.9", toxenv: "codestyle" }
steps:
- uses: actions/checkout@v4
with:
Expand Down
13 changes: 5 additions & 8 deletions modules/ducktests/tests/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
[tox]
envlist = codestyle, py37, py38
envlist = codestyle, py38, py39
skipsdist = True

[testenv]
Expand All @@ -25,19 +25,16 @@ commands =
pytest {env:PYTESTARGS:} {posargs}

[testenv:codestyle]
basepython = python3.8
basepython = python3.9
commands =
flake8

[testenv:py36]
envdir = {homedir}/.virtualenvs/ignite-ducktests-py36

[testenv:py37]
envdir = {homedir}/.virtualenvs/ignite-ducktests-py37

[testenv:py38]
envdir = {homedir}/.virtualenvs/ignite-ducktests-py38

[testenv:py39]
envdir = {homedir}/.virtualenvs/ignite-ducktests-py39

[BASIC]
min-public-methods=0
good-names=i, j, k, x, y, ex, pk, tx
Expand Down

0 comments on commit 385a810

Please sign in to comment.