From 72fcf5d338eb90fffdec60736365048ee77faee8 Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Fri, 13 Sep 2024 09:59:31 +0200 Subject: [PATCH] Add Python 3.12 to the hatch test matrix --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0ce0ccd..6dd0025 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -126,10 +126,11 @@ build = [ features = ["dev"] [[tool.hatch.envs.matrix_test.matrix]] -python = ["3.9", "3.10", "3.11"] +python = ["3.9", "3.10", "3.11", "3.12"] [tool.hatch.envs.matrix_test.scripts] test = ["pytest ./src/ ./tests/",] # --doctest-modules +fast-test = ["pytest ./tests/ -m \"not slow\"",] [tool.pytest.ini_options] testpaths = ["tests"]