From b44e2522c7596476a77070f5b033b4ba37ba35c6 Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Sat, 21 Feb 2026 10:08:43 +0000 Subject: [PATCH] Use native pytest TOML configuration Remove `ini_options.` prefix from pytest configuration keys under `[tool.pytest]`, using the native TOML configuration format supported since pytest 9.0. Co-Authored-By: Claude Opus 4.6 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 510f2c80..8a13280e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -301,8 +301,8 @@ keep_full_version = true max_supported_python = "3.14" [tool.pytest] -ini_options.xfail_strict = true -ini_options.log_cli = true +xfail_strict = true +log_cli = true [tool.coverage] run.branch = true