From 10562ef16a14b16d83b79c5b2597c31f12e1b2b7 Mon Sep 17 00:00:00 2001 From: Raphael Borun Das Gupta Date: Mon, 25 Nov 2024 02:18:03 +0100 Subject: [PATCH] python3Packages.pytest-rerunfailures: 14.0 -> 15.0 --- .../pytest-rerunfailures/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix index 751532baa6aa..dbd2d5b20171 100644 --- a/pkgs/development/python-modules/pytest-rerunfailures/default.nix +++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pytest-rerunfailures"; - version = "14.0"; + version = "15.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchPypi { inherit pname version; - hash = "sha256-SkALy808ekrRUauK+sEj2Q7KOr4n+Ycl3E2XAoh9LpI="; + hash = "sha256-LZrHuvWfTBOscwtH9vqA51XRugWB2kXOMLcvs1QrRHQ="; }; build-system = [ setuptools ]; @@ -29,15 +29,6 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook ]; - disabledTests = [ - # https://github.com/pytest-dev/pytest-rerunfailures/issues/267 - "test_run_session_teardown_once_after_reruns" - "test_exception_matches_rerun_except_query" - "test_exception_not_match_rerun_except_query" - "test_exception_matches_only_rerun_query" - "test_exception_match_only_rerun_in_dual_query" - ]; - meta = with lib; { description = "Pytest plugin to re-run tests to eliminate flaky failures"; homepage = "https://github.com/pytest-dev/pytest-rerunfailures";