From accd595a3c6518641d95537ac59d4e8db05b5e55 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Fri, 29 Aug 2025 11:33:06 -0400 Subject: [PATCH] fix(deps): Restrict `pytest-rerunfailures` version to below 16 Related: https://github.com/pytest-dev/pytest-rerunfailures/issues/302 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 176839984..f406ec805 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,7 @@ test = [ "playwright>=1.48.0", "pytest-xdist", "pytest-timeout", - "pytest-rerunfailures", + "pytest-rerunfailures<16", "pytest-cov", "coverage", "syrupy>=4.7.1",