Skip to content

Commit 6f8e0de

Browse files
committed
Add hatch test matrix for Python 3.8-3.13
Configure hatch to run tests against all supported Python versions (3.8-3.13) using the matrix configuration. This ensures CI actually tests on each Python version specified in the workflow matrix.
1 parent 60e7b2f commit 6f8e0de

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ extra-dependencies = [
3232
'pytest-httpserver',
3333
]
3434

35+
[[tool.hatch.envs.hatch-test.matrix]]
36+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
37+
3538
[tool.hatch.envs.hatch-static-analysis]
3639
dependencies = [ 'ruff>=0.9.1' ]
3740
config-path = 'none'

0 commit comments

Comments
 (0)