diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4e2cc3b..3882a2a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,6 +41,9 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + include: + - os: ubuntu-latest + python-version: "3.11.3" steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index e50aee5..c7e0e2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,7 +66,7 @@ dependencies = ["coverage>=6.5", "pytest-cov"] template = "tests" [[tool.hatch.envs.tests.matrix]] -python = ["3.8", "3.9", "3.10", "3.11", "3.12"] +python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.11.3"] [tool.hatch.envs.tests.scripts] test = "pytest {args:tests} -v --cov=. --cov=./cli --cov-report=term --cov-report=html --cov-report=xml"