Skip to content

Commit

Permalink
Run lint on 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
lancondrej committed Apr 23, 2024
1 parent f485ee0 commit d25fe38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# Only lint using the primary version used for dev
python-version: ['3.9']
python-version: ['3.12']

steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy

[tox]
envlist = py38
; envlist = py37, py38, py39
envlist = py38, py39, py310, py311, py312
isolated_build = true

[testenv]
whitelist_externals = poetry
allowlist_externals = poetry

commands =
poetry install -v
Expand All @@ -19,7 +18,7 @@ commands =
[testenv:pytest]
# Run the python tests.
# To execute, run `tox -e pytest`
envlist = py37, py38, py39
envlist = py38, py39, py310, py311, py312
commands =
poetry install -v
poetry run pytest
Expand Down

0 comments on commit d25fe38

Please sign in to comment.