python3Packages.pytest-rerunfailures: 14.0 -> 15.0 (#358855)

This commit is contained in:
Vladimír Čunát
2025-01-06 09:31:03 +01:00
@@ -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";