Skip to content

Commit

Permalink
Merge branch 'main' into add-3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored Sep 24, 2024
2 parents 67bbdaf + a7d8aee commit b702c1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@
requires =
tox>=4.2
env_list =
py{312, 311, 310, 39, 38}
py{313, 312, 311, 310, 39}
isolated_build = true

[testenv]
extras =
dev
pass_env =
FORCE_COLOR
commands =
{envpython} -m pytest --cov cherry_picker --cov-report html --cov-report term --cov-report xml {posargs}
{envpython} -m pytest \
--cov cherry_picker \
--cov-report html \
--cov-report term \
--cov-report xml \
{posargs}

0 comments on commit b702c1a

Please sign in to comment.