From 3ae956ee33376108b3774d3f62ebe63ce1af39a3 Mon Sep 17 00:00:00 2001 From: Kieran Ryan Date: Thu, 1 Jan 2026 23:14:23 +0000 Subject: [PATCH] Add pytest v9 to CI test matrix --- .github/workflows/build.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 03cda33b..010ab9e5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -98,7 +98,13 @@ jobs: strategy: matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] - pytest-version: ["7.*", "8.*"] + pytest-version: ["7.*", "8.*", "9.*"] + exclude: + # pytest 9 supports Python >= 3.10 + - python-version: "3.8" + pytest-version: "9.*" + - python-version: "3.9" + pytest-version: "9.*" env: TEST_TMP: /tmp ALLURE_INDENT_OUTPUT: yep