Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.12 to tox.ini. #147

Merged
merged 2 commits into from
Nov 25, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 2 additions & 10 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ envlist =
check
build
build_docs
py{38,39,310, 311}
py{38,39,310,311,312}
isolated_build = True
skip_missing_interpreters = True

Expand All @@ -14,6 +14,7 @@ python =
3.9: py39
3.10: check, build, build_docs, py310
3.11: py311
3.12: py312

[testenv:check]
allowlist_externals = poetry
Expand Down Expand Up @@ -44,12 +45,3 @@ skip_install = true
commands =
poetry install
poetry run pytest -ra --cov=pyhpke --cov-report=term --cov-report=xml tests


[testenv:py310]
allowlist_externals = poetry
skip_install = true
commands =
pip install cleo tomlkit poetry-core requests cachecontrol cachy html5lib pkginfo virtualenv lockfile
poetry install
poetry run pytest -ra --cov=pyhpke --cov-report=term --cov-report=xml tests