From f4c3eedcd416c495184b20fd661e7d8201e76269 Mon Sep 17 00:00:00 2001 From: "Moritz E. Beber" Date: Sun, 4 Aug 2024 15:36:23 +0200 Subject: [PATCH] fix: include all dependencies in tests --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 099464a..97f5b81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -277,9 +277,10 @@ extra-dependencies = [ "pytest-randomly", "pytest-xdist", ] +features = ["all"] [[tool.hatch.envs.test.matrix]] -python = ["3.8", "3.12"] +python = ["3.8", "3.9", "3.10", "3.11", "3.12"] [tool.hatch.envs.test.scripts] run = "pytest --cov=taxpasta --cov-report=term-missing {args}"